

/*************************  HIGHLIGHTING CURRENT PAGE  **************************/
$(document).ready(function() {


			/**********************************************************************************************/
			
			/*   ATTENTION, FOR THIS SCRIPT TO WORK YOU MUST SET THE HREF WITHIN THE LINK TO A FULL URL    */
			/*   FOR INSTANCE http://mydomain.com/page1.html AS OPPOSED TO  page1.html                     */
		//set the ID of the menu
		
				//current location
			var href = jQuery(location).attr('href');
		
		//REPEAT THE SCRIPT BELOW IF YOU WANT THIS TO WORK ON SEVERAL MENUS
		$('#top_nav li a').each(function(index) {
   				
						if ($(this).attr('href')== href)
						{
									$(this).addClass('top_nav_on');
									//$(this).parent().addClass('top_nav_li_on');
						}//end if
							
	  			});//end loop
		
		
		
		//REPEAT THE SCRIPT BELOW IF YOU WANT THIS TO WORK ON SEVERAL MENUS
		$('#main_nav li a').each(function(index) {
   				
						if ($(this).attr('href')== href)
						{
									//alert('')
									$(this).addClass('main_nav_on');
									//$(this).parent().addClass('top_nav_li_on');
						}//end if
							
	  			});//end loop
		


					
});





// Cufon
Cufon.replace('#main_nav li a',  {textShadow: '0px 1px #000' , hover: true});




