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

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