var $rwt = jQuery.noConflict();
$rwt(document).ready(function(){
	
	$rwt(".trigger1, .trigger2, .trigger3").fadeTo("normal", 0.45); // page load
	
	$rwt(".trigger1, .trigger2, .trigger3").hover(function(){
		$rwt(this).stop().fadeTo("normal", .75); // hover
	},function(){
   		$rwt(this).stop().fadeTo("normal", 0.45); // mouseout
	});
	
});
