$(document).ready(function(){
  $(".header").fadeTo(600,0.0); // This sets the opacity of the thumbs to fade down to 60% when the page loads
  
  $(".header").hover(function() {
    $(this).fadeTo(600); // This should set the opacity to 100% on hover  
    //$(this).css("background-image","url(../../images/center-bg.png)");    
  //$(".header").css("filter","progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../../images/center-bg.png')");             
    $(this).css("opacity","0.6");
    $(this).css("display","block");
    //$(this).addClass("opaque");
//         $(".header").css("filter","alpha(opacity=60)");
//         $(".header").css("zoom","1");  
  },function() {
    $(this).fadeTo(600,0.0); // This should set the opacity back to 60% on mouseout      
    //$(this).removeClass("opaque");
//   $(".header").css("filter","progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../../images/center-bg.png')");             
//         $(".header").css("opacity","1");
//         $(".header").css("filter","alpha(opacity=60)");
//         $(".header").css("zoom","1");  
  });
  
  $("dl#list2 dt,dl#list2 dd").mouseover(function() {
    //$("#list2 dd").fadeTo(200);
    $("dl#list2 dd").slideDown("slow");

  });
  $("div#supersized").mouseover(function() {
    //$("#list2 dd").fadeTo(200);
    //$("dl#list2 dd").slideToggle("fast"); 
    $("dl#list2 dd").slideUp("slow");
  });
});
