// ----------------------------------------------------------------------------
// MJL
// ----------------------------------------------------------------------------
/*
MJL.event.add(window, "load", function() {
    MJL.enable.flash("flash", { version : 9 });
    MJL.enable.heightEqualizer("equalize-col2", { groupBy : 2 });
	MJL.enable.heightEqualizer("equalize-col3", { groupBy : 3 });
	MJL.enable.heightEqualizer("equalize-col4", { groupBy : 4 });
    MJL.enable.rollover('roll', { disable : 'unroll' });
});
*/

// ----------------------------------------------------------------------------
// Extend Scripts with jQuery
// ----------------------------------------------------------------------------

// ---------------------------------------------------------
// 「target="_blank"」を実装（※Strict対策）
// ---------------------------------------------------------
/*
$(document).ready(function(){
	$("a.external").attr("target","_blank");
});
*/

// ---------------------------------------------------------
// プリント用のページを生成
// ---------------------------------------------------------

$(document).ready(function(){
	$("div.nav-location div.nav-location-inner p.print").css("display","block");
});

str = location.search;
str = str.substring(1,str.length);
str2= str.split("&");
for(var i=0; i<str2.length; i++){
	str3 = str2[i].split("=");
	if(str3[0]=="style" && str3[1]=="print"){
	document.write('<link href="/css/print_preview.css" rel="stylesheet" type="text/css" />');
	}
}

