﻿$(function(){
        
$('div.videos div').hide();
var origHeight = $('div.videos').css("height");
    
$('div.videos img').hover(function() {

  $(this).css("opacity", ".5");
  var thisParam = $(this);

    $('div.videos').stop().animate({"height" : "310px"}, function() {
      $(thisParam).parent('a').next('div').stop().show();
    });
     
}, function() {

  $(this).css("opacity", "1");
  $('div.videos div').hide();   $('div.videos').stop().animate({"height" : origHeight});
});
});