/* Thumbnail grid hover dropdowns */

 $(function() {

 $(".hidden").hide(); 
	
    $("#thumbs li").hover(
      function () {
      if ($.browser.msie) $(".hidden", this).show();
        $(".hidden", this).animate({ height: 'show' }, 'fast');
      }, 
      function () {
      if ($.browser.msie) $(".hidden", this).hide();
        $(".hidden", this).animate({ height: 'hide' }, 'fast');
      }
    );

});