//Slide Starts
$(document).ready(function(){
  
    //Caption Sliding (Partially Hidden to Visible)
    $('.boxgrid.caption').hover(function(){
      $(".cover", this).stop().animate({top:'0px'},{queue:false,duration:160});
    }, function() {
      $(".cover", this).stop().animate({top:'52px'},{queue:false,duration:160});
    });
	
	//Caption Sliding (Partially Hidden to Visible)
    $('.boxgrid01.caption01').hover(function(){
      $(".cover01", this).stop().animate({bottom:'0px'},{queue:false,duration:160});
    }, function() {
      $(".cover01", this).stop().animate({bottom:'97px'},{queue:false,duration:160});
    });
  });
//Slide End
//Sponsors Information Starts
 $(document).ready(function(){
     $('#partnerList .line').hover(function(){
         $(this).addClass("selected");
      });
	 
	 if(typeof $.mouseleave == 'function')
	 {
		 $('#partnerList .line').mouseleave(function(){
			 $(this).removeClass('selected');
		 });	
	 }
 });
//Sponsors Information End
