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