$(document).ready(function() {
// fix the pngs
$(document).pngFix();

// products hover change text color
// first make sure it's there
if($('a.prods').length > 0) {
$('a.prods').hover(function () {

$(this).parent().parent().find('h2 a').css({'color' : '#fff'});
}, 
function () {
$(this).parent().parent().find('h2 a').css({'color' : '#c3a2c3'});

});
};
// END prod hover



});
// END dom ready