// Menu Opacity v1.0 @ Djesign.com
$(document).ready(function(){
$(".showcat a").hover(function(){
$(this).fadeTo("slow", 0.4);
},function(){
$(this).fadeTo("fast", 1.0);
});
});
