$(document).ready(function() {				
   // first reset all the images to not selected
$('img.left_nav'). each( function() {
 this.src = this.src.replace(/_sel/, "_not");
}) ;

// now set the active image 
	var str = location.href.substring( location.href.indexOf('.com')+4)  ;
	var arr = str.split("/") ; 

//alert(arr.length)
	
	if( arr[1] =='contact') {
		$("#left_nav_contact").attr('src','/images/nav_contact_sel.gif')
	}
	
	else if( arr[1] =='examples') {
		$("#left_nav_examples").attr('src','/images/nav_examples_sel.gif')
	}
	else if( arr[1] =='sign%5Fin') {
		$("#left_nav_login").attr('src','/images/nav_login_sel.gif')
	}
	
	else if( arr[1] =='topup') {
		$("#left_nav_profile").attr('src','/images/nav_profile_sel.gif')
	}
	//easy ones done ... now the client/escort ones 
	
	else if( arr[1] =='clients' && arr[2]=='') {
		$("#left_nav_hire").attr('src','/images/nav_hire_sel.gif')
	}
	
	else if( arr[1] =='clients' && arr[2]=='update') {
		$("#left_nav_profile").attr('src','/images/nav_profile_sel.gif')
	}
	else if( arr.length>1 &&  arr[1] =='escorts' && arr[2]=='become') {
		$("#left_nav_become").attr('src','/images/nav_become_sel.gif')
	}
	
	else if(  arr[1] =='escorts' && arr[2]!='become') {
		$("#left_nav_profile").attr('src','/images/nav_profile_sel.gif')
	}

}); // end doc ready 
 