$(document).ready(function() {
						   
    $(".boxVisite").hover(function(){
        //i = $(this).attr("id");
        //alert(i);
        $(this).children(".boxInfo").animate({
            left: "230px"
        }, 700 );
    },
			
    function(){

        $(this).children(".boxInfo").animate({
            left: "-60px"
        }, 700 );
    });
/*
    $(".boxVisite").click(function(){
        var link = $(this).find("a");
        var linkLocation = $(link).attr("href");
        window.open(linkLocation);
        return false;
    });
/**/
    $(".boxVisite").click(function(){
        window.location=$(this).find("a").attr("href") = null;
        return false;
    });
/*



/**/
});
