$j(document).ready(function(){
$j("#brand1").fadeTo((1500), 0); // This sets the opacity of the thumbs to fade down to 0% when the page loads
$j("#brand1").hover(function(){
$j(this).fadeTo("slow", 1.0); // This should set the opacity to 100% on hover
},function(){
$j(this).fadeTo("slow", 0); // This should set the opacity back to 30% on mouseout
});
});

$j(document).ready(function(){
$j("#brand2").fadeTo((1500), 0);
$j("#brand2").hover(function(){
$j(this).fadeTo("slow", 1.0);
},function(){
$j(this).fadeTo("slow", 0);
});
});

$j(document).ready(function(){
$j("#brand3").fadeTo((1500), 0);
$j("#brand3").hover(function(){
$j(this).fadeTo("slow", 1.0);
},function(){
$j(this).fadeTo("slow", 0);
});
});

$j(document).ready(function(){
$j("#brand4").fadeTo((1500), 0);
$j("#brand4").hover(function(){
$j(this).fadeTo("slow", 1.0);
},function(){
$j(this).fadeTo("slow", 0);
});
});

$j(document).ready(function(){
$j("#brand5").fadeTo((1500), 0);
$j("#brand5").hover(function(){
$j(this).fadeTo("slow", 1.0);
},function(){
$j(this).fadeTo("slow", 0);
});
});