$(function(){
		   
/*********************************************************************

  矩形の角丸化

*********************************************************************/
$(".crectbox").corner("keep");


/*********************************************************************

  フェードの処理

*********************************************************************/

$(".fade").load(function(){
	$(this).fadeTo(0, 0.0);
});

$(".fade").hover(
				 
function(){
	$(this).fadeTo(150, 1.0);
},
function(){
	$(this).fadeTo(150, 0.0);
}

);

});


/*********************************************************************

  初期化処理

*********************************************************************/

$(document).ready( function () {

conth=$("#contents").height();
$("#shadow_left").css("height", conth);
$("#shadow_right").css("height", conth);

});
