﻿jQuery(document).ready(function(){

    jQuery(".anchor").click(function() {  
        window.location=$(this).find("a").attr("href");return false;
        
    });
 
    jQuery('.anchor').hover(function() {
       jQuery(this).addClass('boxHover');
       }, function() {
       jQuery(this).removeClass('boxHover');
    }); 
});