(function($){
    
    $(document).ready(function(){
       
       //ANCHOR: MAKE DIV LINKABLE
       $('div.anchor').click(function(){ 
       
            var link = $('a:first',this).attr('href');
            window.location = link;
        
       });
      
       $('div.anchor').hover(function(){ 
                      
            $('a:first',this).addClass('hover');
            
       },function(){
           
           
            $('a:first',this).removeClass('hover');
            
       });
    });    
    
}(jQuery));
