// JavaScript Document	

	var _url = window.location.href.toLowerCase();
	if( _url.indexOf( '/productdetails.asp' ) != -1 || _url.lastIndexOf( '-p/' ) != -1 || _url.lastIndexOf( '_p/' ) != -1 )
		{
			document.write( '<link type="text/css" rel="stylesheet" href="/v/vspfiles/templates/JWHulme2011/css/Product_Detail.css" />');
		}
	else if( _url.indexOf( '/searchresults.asp' ) != -1 || _url.lastIndexOf( '-s/' ) != -1 || _url.lastIndexOf( '_s/' ) != -1 )
		{
			document.write( '<link type="text/css" rel="stylesheet" href="/v/vspfiles/templates/JWHulme2011/css/Category.css" />');
		}
	else if( location.pathname == '/' ||location.pathname.toLowerCase().indexOf( '/default.asp' ) != -1 )
		{
			/* Home Page CSS Goes Here */;
		}
	else if( _url.indexOf( '/one-page-checkout.asp' ) != -1 )
		{
			document.write( '<link type="text/css" rel="stylesheet" href="/v/vspfiles/templates/JWHulme2011/css/Checkout.css" />');
		}
	else if( _url.indexOf( '/shoppingcart.asp' ) != -1 )
		{
			document.write( '<link type="text/css" rel="stylesheet" href="/v/vspfiles/templates/JWHulme2011/css/ViewCart.css" />');
		}

