// in iframe
if(parent.contents_frame){
	document.write('<link rel="stylesheet" type="text/css" href="./css/iframe.css">');
}

// for MacIE
//if((navigator.appVersion.indexOf("Mac",0) != -1) && (navigator.appVersion.indexOf("MSIE 5",0) != -1)){
//	document.write('<link rel="stylesheet" type="text/css" href="./css/macie.css">');
//}

$(function(){
// d = location.href;
// d = d.substring(d.lastIndexOf("/")+1,d.length)
// d = d.substring(0,d.indexOf("."));
d = $("#contents").attr("class").split(" ")[0];

 // Menu - remove link of current page
 $(".menu_" + d).parent().addClass("current_page");
 $(".menu_" + d).parent().html($(d).html());

 // Artist Photo
 if(parent.contents_frame && parent.cur_d != d){
  parent.changeArtPhoto(d);
 }

 // add class "last" to last one
 if(d=="hotnews") $("#contents ul:last").attr("class","last");
 if(d=="info") $("#contents dd:last").attr("class","last");
 if(d=="disco") $("#contents dl:last").attr("class","last");
});
