/**
 * サイドバーのメニュー開閉
 */
$(function(){
	$(".widemenu li:nth-child(even)").addClass("even"); 
	slider(".menu#menu03");
	slider(".menu#menu04");
	slider(".menu#menu05");
	slider(".menu#menu06");
	slider(".menu#menu07");
});
function slider(selector) {
	$(selector).mouseover(function(event){
		$(this).stop(true, false).animate({
			width: "308px",
			marginLeft: "-160px",
			position:"absolute"
		}, 300, "swing");
		event.stopPropagation();
		event.stopImmediatePropagation();
		
	}); 
	$(selector).mouseout(function(event){
		$(this).stop(true, false).animate({
			width: "148px",
			marginLeft: "0px",
			position:"inherit"
		}, 300, "swing");
		event.stopPropagation();
		event.stopImmediatePropagation();
	});
}
