// JavaScript Document



$(document).ready(function(){
$(".trigger").fadeTo("slow", 0.3);
$(".trigger").hover(function(){
$(this).fadeTo("slow", 1.0);
},function(){
$(this).fadeTo("slow", 0.3);
});
});


