$(function(){
	$(".menu_cars").hoverIntent(open,close);
});

function open(){
	$(this).animate({width: '239px'},200).css("background", "url(/images/landrover/bg/menu_open.png) no-repeat");
	$("#specifications").show();
	$(".absolute_menu").css({background: "url(/images/landrover/bg/menu_opacity.png)", width: "100%"});
}
function close(){
	$(this).animate({width: '42px'},300).css("background", "url(/images/landrover/bg/menu_close.png) -4px -4px no-repeat");
	$("#specifications").hide();
	$(".absolute_menu").css({background: "none", width:"42px"});
}

