
$(document).ready(function(){	
	height=$(document).height();
	width=$(document).width();
	old_h=document.documentElement.scrollHeight;
	
	
	$('ul.top_menu a').hover(function(){									  
		new_x=$(this).offset().left;	
		m_w=$(this).width();
		c_w=$('#car').width();
		$('#car').stop(true,false).animate({ left: new_x-(c_w-m_w)/2+"px" }, 1800,'easeInOutBack' );
		
	},function(){
	
	});
	$('ul.top_menu a.active').hover();
	
	
	
	
	
	  
	 
});






$(window).resize(function(){
	height=$(document).height();
	width=$(document).width();
	old_h=document.documentElement.scrollHeight;
	
	
	
	  
	  
	  
	
});




