$(document).ready(function(){
	$("a.goTop").click(function(){scroll(0,0); return false;});
	$("div.navi ul li a").click(function(){
		if ($(this).next("ul").css("display") == "none") {
			$(this).next("ul").show();
			$(this).addClass("yellow");
			return false;		
		}
	});
    $("a.sh").click(function(){
    	$("#rub").toggle("slow");
    });
});
 function openWin(url, size)
 {
 window.open(url, "photo",'location=0,status=0,menubar=0,resizable=yes,scroll=yes,'+ size);
 }