$(document).ready(function(){
			//ia textul din antet(unse e poza cu casuta)			   
			var page = $('li#li_fourth_line_c_2').children().attr('name');
			//daca textul arata ca suntem pe pagina HOME , butonul de home se incarca direct highlight
			if(page == "Home"){	$('li#Home').css({ "background-position":"top left","cursor":"pointer"});		}
	   		if(page == "Cazuri"){	$('li#Cazuri').css({ "background-position":"top left","cursor":"pointer"});		}
	   		if(page == "Cabinet"){	$('li#Cabinet').css({ "background-position":"top left","cursor":"pointer"});		}
	   		if(page == "Contact"){	$('li#Contact').css({ "background-position":"top left","cursor":"pointer"});    }
	   		if(page == "Servicii"){	$('li#Servicii').css({ "background-position":"top left","cursor":"pointer"});    }	

			//rollover			   
			$('li.main_menu_button').hover(function(){
																					
					$(this).css({ "background-position":"top left","cursor":"pointer"});
													},
					function(){
					var zis = $(this).attr('id');	
					if(zis == page){	
					$(this).css({ "background-position":"top left"});
											}
					else{
						
					$(this).css({ "background-position":"bottom left"});	
						}
						
						});	
			
			
});