Any ideas why my fading tabs are not working in IE???

Any ideas why my fading tabs are not working in IE???

Hi. I have used jquery to slightly fade out inactive tabs.

http://synthsoundz.com/devonwebsitedesign - click on one of the navigation tabs for an example.

The problem is that on IE7 the tabs go black when they are clicked and im not sure why this is. On IE6 nothing happens.

The i have use is...
// JavaScript Document
$(document).ready(function(){
   
$("#tabs a").click(function(){
$("#tabs a").fadeTo(1, 0.5);
$(this).fadeTo(1, 1.0);      

});
});


Could someone perhaps shed some light on the subject??

Thanks.