$(document).ready(function() {
   if( $('#coloursearch').length ) {
    $("#coloursearch li").hover(function() {
	if(jQuery.support.opacity ) {$(this).fadeTo('fast', 1);}
	 $(this).find('a').show();
   },function(){
     $(this).find('a').hide();
	 if(jQuery.support.opacity ) {$(this).fadeTo('fast', 0.5);}
   });


   
   }
 }); 

