var $e = jQuery.noConflict();

function MiniSiteAves2(pAction){

	if(pAction=='Show'){
		$e("#MiniSiteAves2").fadeIn('slow');
		$e("#BackgroundBlue").fadeIn('slow');
	}else{
		$e("#MiniSiteAves2").fadeOut('slow');
		$e("#BackgroundBlue").fadeOut('slow');
	}
}


 jQuery(document).ready(function() {
    if ($("#BackgroundBlue")){
         $("#BackgroundBlue").animate({opacity: 0.8}, 1500);              
    }
});

