jQuery(document).ready(function() {
	// Handler for .ready() called.		
	var cssContentHeight = jQuery("#mainContentHome").outerHeight();
	jQuery("#mainContentWrapper").css( "height", cssContentHeight + 400);
	  
	jQuery("DIV.naviItemNormal").easyMorphingBgColor({color:"e3e4e4",originalColor:"ffffff"});
	jQuery("DIV.naviItem1stLevel").easyMorphingBgColor({color:"e3e4e4",originalColor:"ffffff"});
	jQuery("DIV.headernavi").easyMorphingBgColor({color:"e3e4e4",originalColor:"ffffff"});
	
	jQuery("DIV#p3bInnerCircleLogo").mouseover(function() {
		jQuery(this).animate({opacity: 0.6})
	}).mouseout(function(){
		jQuery(this).animate({opacity: 1.0})
	});
});
