$(document).ready(function(){

//$('.extra #alpha img').imghover({suffix: '-roll'});
//$('#alpha .gallery li img').imghover({suffix: '-roll'});
$('#alpha input#subscribe').hover(
function(){$(this).addClass('hover')}, function(){$(this).removeClass('hover')
});
  $('.extra #alpha .col a').hover(
    function(event){  
    whichClass= $(this).attr('id');
    whichImg= '#alpha div[class~='+whichClass+'] img';
    $(whichImg).addClass('hover');
       },function(){
    $(whichImg).removeClass('hover');
    });

  $('.extra #alpha img').hover(
    function(event){  
    $(this).addClass('hover');
    $(this).closest('div').addClass('hover');
       },function(){
    $(this).removeClass('hover');
    $(this).closest('div').removeClass('hover');
    });

  $('#alpha .gallery li img').hover(
    function(event){  
    $(this).addClass('hover');
       },function(){
    $(this).removeClass('hover');
    });

});