$(function(){
	//菜单效果
	$('#webmenu li').hover(function(){
		$(this).children('ul').stop(true,true).show('slow');
	},function(){
		$(this).children('ul').stop(true,true).hide('slow');
	});
	
	$('#webmenu li').hover(function(){
		$(this).children('div').stop(true,true).show('slow');
	},function(){
		$(this).children('div').stop(true,true).hide('slow');
	});
	
	//热租车型左边效果
	$('.boxgrid.slideright').hover(function(){
		$(".cover", this).stop().animate({left:'227px'},{queue:false,duration:300});
	}, function() {
		$(".cover", this).stop().animate({left:'0px'},{queue:false,duration:300});
	});
	
	
	//月租半年租年租
	$(".toggle_link").click(function () {
	$(this).next(".toggle").slideToggle();});
});	
	
