 $(document).ready(function() {
   
   	var tmpURL = window.location.pathname;
	
	
	if(tmpURL.indexOf("patricia") == 1)
		{
			$("#nav li:nth-child(1) a").addClass("selected");
			
			
		}else if(tmpURL.indexOf("handbag") == 1){
			
			$("#nav li:nth-child(2) a").addClass("selected");
			
			
		}else if(tmpURL.indexOf("press") == 1){
			

			$("#nav li:nth-child(3) a").addClass("selected");
			
			
		}else if(tmpURL.indexOf("social") == 1){
			

			$("#nav li:nth-child(4) a").addClass("selected");
			
		}
   
 });

