$(document).ready(function() {
      /*$('#banner li').hover(function() {
        $(this).addClass('hover')
      }, function() {
        $(this).removeClass('hover')
      });*/
	  $('#banner li div.fdo').hover(function() {
		$(this).fadeTo("slow", 0.0);
	}, function() {
		$(this).fadeTo("slow", 1.0);
	});
	  
	  $('#docs ul').equalHeights(true);
	  $('#ctd .lst-dir').equalHeights(true);
	  $('#ctd .lst-mw-f1').equalHeights(true);
	  $('a[rel*=lightbox]').lightBox();	 
	  equalHeight($(".column ul"));
	  equalHeight($(".column2 ul"));
	  
	  //Caption Sliding (Partially Hidden to Visible)
		$('.boxgrid.caption').hover(function(){
			$(".cover", this).stop().animate({top:'0px'},{queue:false,duration:350});
		}, function() {
		$(".cover", this).stop().animate({top:'90px'},{queue:false,duration:350});
		});
});


