
$(document).ready(function() {
 if($.browser.msie)speed=0; else speed=180;
 $('.panel').mouseenter(function(){
 var $this=$(this).find('.description');
 $this.stop(true, true).fadeIn(speed);
 }).mouseleave(function(){
 $(this).find('.description').fadeOut(speed);
 });
 }); 

