$(document).ready(function(){

if(jQuery.browser.msie && parseFloat(jQuery.browser.version)<=7){
        messaggio='<div id="stopie6">O seu navegador e muito antigo. Para melhorar a performance da sua navegacao baixe gratuitamente: <a href="http://www.microsoft.com/italy/windows/products/winfamily/ie/default.mspx" target="_blank">Internet Explorer 8</a>, o <a href="http://www.mozilla-europe.org/it/firefox/" target="_blank">Firefox</a>, <a href="http://www.apple.com/it/safari/download/" target="_blank">Safari</a>, <a href="http://www.google.com/chrome/" target="_blank">Chrome</a>, <a href="http://www.opera.com/" target="_blank">Opera</a>.';
        $("body").prepend(messaggio);
        $('#stopie6').css({'background-color':'#ffc','color':'#333','font-family':'Arial,sans-serif','padding':'8px','font-size':'13px','border':'solid 1px #333'})
        $('#stopie6 a').css({'color':'#000'});
}

 if (jQuery.browser.msie && jQuery.browser.version == 7) { 
                $(".item").hover(function(){
            $(this).find(".boxHover").stop().animate({
                top:5
            }, 150);
            }, function(){
            $(this).find(".boxHover").stop().animate({
                top:70
            }, 150);
        });
            
    }
    
    else{
    $(".item").hover(function(){
            $(this).find(".boxHover").stop().animate({
                top:4
            }, 150);
            }, function(){
            $(this).find(".boxHover").stop().animate({
                top:70
            }, 150);
        });
    }

});