if ($.browser.msie && $.browser.version.substr(0,1)<7) {
    $(document).ready(function(){
        $("#pictures a").hover(function() {
            var largePath = $(this).attr("name");
            var largeAlt = $(this).attr("title");
            clearTimeout($(this).data('timeout'));
            $("#largeImg").attr({
                src: largePath,
                alt: largeAlt
            });
            var t = setTimeout(function() {
                $("#inner").find(".picture").animate({
                    opacity: "show",
                    top: "10"
                }, "slow");
            }, 500);
            $(this).data('timeout', t);
        }, function() {
            clearTimeout($(this).data('timeout'));
            $("#inner").find(".picture").animate({
                opacity: "hide",
                top: "40"
            }, "fast");
        });

    });
}else{
    $(document).ready(function(){
        
        $("#pictures a").hover(function() {
            var largePath = $(this).attr("name");
            var largeAlt = $(this).attr("title");
            clearTimeout($(this).data('timeout'));
            $("#largeImg").attr({
                src: largePath,
                alt: largeAlt
            });
            var t = setTimeout(function() {
                $("#inner").find(".picture").animate({
                    opacity: "show",
                    top: "130"
                }, "slow");
            }, 500);
            $(this).data('timeout', t);
        }, function() {
            clearTimeout($(this).data('timeout'));
            $("#inner").find(".picture").animate({
                opacity: "hide",
                top: "150"
            }, "fast");
        });
    });
}

