
$(function(){
			$("ul.menusub").show();
			$("li.none").show();
			$("img.refo").attr('src','images/reform_b_on.gif');
			
			$("li#slide").toggle(function(){
			$("li.none").hide();
			$("ul.menusub").hide();
			$("img.refo").attr('src','images/reform_b_1.gif');
			
		},function(){
			$("li.none").show();
			$("ul.menusub").show();
			$("img.refo").attr('src','images/reform_b_on.gif');

		});
			
	});

