jQuery.noConflict();
jQuery(document).ready(function() {
	
	var cssContentHeight = jQuery("#mainContent").outerHeight();
	if (!cssContentHeight) {
		jQuery("#mainContentWrapper").css( "height", 780);
	} else {
		jQuery("#mainContentWrapper").css( "height", cssContentHeight + 340);
	}
  
	jQuery("DIV.naviItemNormal").easyMorphingBgColor({color:"e3e4e4",originalColor:"ffffff"});
	jQuery("DIV.naviItem1stLevel").easyMorphingBgColor({color:"C3C3C3",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})
	});

	jQuery("DIV.actualNavItemBig2ndLevelLinked").mouseover(function() {
		jQuery(this).stop().animate({opacity: 0.6})
	}).mouseout(function(){
		jQuery(this).stop().animate({opacity: 1.0})
	});
	
	jQuery("DIV.subpageDisplay").mouseover(function() {
		jQuery(this).css( "opacity", "0.9");}).mouseout(function(){jQuery(this).css( "opacity", "1.0");
	});
});
