$(document).ready(function(){

	$("#nojavascript").remove();

	// ロールオーバ/アウト
	$(".rollover").mouseover(function(){
		if (typeof document.documentElement.style.maxHeight != "undefined") {
			$(this).stop().animate({ "opacity":0.5 },300,"easeOutSine");
		} else {
			$(this).css("opacity", 0.5);
		}
	});
	$(".rollover").mouseout(function(){
		if (typeof document.documentElement.style.maxHeight != "undefined") {
			$(this).stop().animate({ "opacity":1 },300,"easeOutSine");
		} else {
			$(this).css("opacity", 1);
		}
	});
	
});

$(window).unload(function(){});



