// JavaScript Document

$(document).ready(function(){
	
	$('.menu a').hover(
			function() {
				if($(this).attr('id')==actualSite)return;
				$offset=-1*( $(this).offset().left - $('.baner_center').offset().left);
				$(this).css({'background':'url(images/menu_hov_bg.jpg) no-repeat',backgroundPosition: $offset+'px 0px'});
				$(this).stop(true,true).animate({'line-height':'40px'},300).animate({'line-height':'50px'},100,'linear',
							function(){  }
				);
			},
			function() {
				if($(this).attr('id')==actualSite)return;
				$(this).css({background:'none'});
				$(this).stop(true,true).animate({'line-height':'100px'},300).animate({'line-height':'80px'},100);
			}
	);
	
	
	setSelectedMenu(actualSite);

});	
						   
	function setNonSelectedMenu(id){
		$('#'+id).css({background:'none'});
		$('#'+id).stop(true,true).animate({'line-height':'100px'},300).animate({'line-height':'80px'},100);
		//$('#'+id+'_bottom').removeClass('selected_fot');
		$('[rel='+id+']').removeClass('selected_fot');
	}
	
	function setSelectedMenu(id){
				//$('#'+id+'_bottom').addClass('selected_fot');
				$('[rel='+id+']').addClass('selected_fot');
				
				$offset=-1*($('#'+id).offset().left - $('.baner_center').offset().left);
				$('#'+id).css({'background':'url(images/menu_sel_bg.jpg) no-repeat',backgroundPosition: $offset+'px 0px'});
				$('#'+id).stop(false,true).animate({'line-height':'40px'},300).animate({'line-height':'50px'},100,'linear',
							function(){  }
				);
	}						   
