$(document).ready(function(){
	static_image=0
	has_main_bkg = new Array("bz00","bz01","bz01-01","bz02","bz02-01","bz03","bz03-01","bz04","bz05","bz05-01","bz05-02","bz05-03","bz06","bz07","bz08")
	for(n=0;n<has_main_bkg.length;n++){
		if($("body").attr("class").indexOf(has_main_bkg[n])!=-1){
			static_image=1
			}
		}
	if(!static_image){
		r_n=Math.floor(Math.random()*10)+1
		if(r_n<10){
			r_n="0"+r_n
			}
		$("#cnt #box #main").css("background-image","url(css/i/main-bkg-bz00-"+r_n+".png)")
		}

	$("#main").mouseover(function(){
		$("#subm ul").fadeOut("fast")  //  .removeShadow()
		})
	$("#menu ul li").each(function(i){
		$(this).mouseover(function(){
			$("#subm ul:not(."+$(this).attr("class")+")").fadeOut("fast")  //  .removeShadow()
			$("#subm ul."+$(this).attr("class")).fadeIn("fast")  //  .dropShadow({left: 1, top: 1, opacity: 0.5, blur: 2, color: "black"});
			})
		})
	if($("body").attr("class").indexOf("bz08")!=-1){
		$("body #main .cnt .col_b ul li").each(function(i){
			$("body #main .cnt .col_b ul li").eq(i).click(function(){
				$("body #main .hdr h3").html($(this).children("a").html())
				$("body #main .cnt .col_a").html($(this).children("span").html())
				})
			})
		}
	})




