

$(function(){
$('#home a img').mouseover(
function() {
$(this).fadeTo("fast", 0.5);
});
$('#home a img').mouseout(
function() {
$(this).fadeTo("fast", 1.0);
});
});



