function bindmenu(){
	$(".main_menu").find("ul").find("li").hover(
		function(){
			$(this).find("img").attr('src',$(this).attr("over"));
		},function(){
			$(this).find("img").attr('src',$(this).attr("out"));
		}
	);
	$(".main_menu").find("ul").find("li").click(function(){
		window.location = $(this).attr("to");
	});
}