$(document).ready(function(){

    $('.boxSquare').each(function(){
        $(this).click(function(){
            window.location = $(this).children().attr("href");
            return false;
	});
    });

});