$(document).ready(function(){
$('div#downloads a').fadeTo(0, .8).css('filter', 'none');
$('a.goStockists img').fadeTo(500, .8).css('filter', 'none');
$('a.goContact img').fadeTo(600, .8).css('filter', 'none');
$('a.goTips img').fadeTo(700, .8).css('filter', 'none');
$("div#downloads a").mouseenter(function(){
$("div#downloads a").fadeTo(200,1.00).css('filter', 'none');
});
$("div#downloads a").mouseleave(function(){
$("div#downloads a").fadeTo(600,.8).css('filter', 'none');
});
$("a.goStockists img").mouseenter(function(){
$("a.goStockists img").fadeTo(200,1.00).css('filter', 'none');
});
$("a.goStockists img").mouseleave(function(){
$("a.goStockists img").fadeTo(600,.8).css('filter', 'none');
});
$("a.goContact img").mouseenter(function(){
$("a.goContact img").fadeTo(200,1.00).css('filter', 'none');
});
$("a.goContact img").mouseleave(function(){
$("a.goContact img").fadeTo(600,.8).css('filter', 'none');
});
$("a.goTips img").mouseenter(function(){
$("a.goTips img").fadeTo(200,1.00).css('filter', 'none');
});
$("a.goTips img").mouseleave(function(){
$("a.goTips img").fadeTo(600,.8).css('filter', 'none');
});
});
