$(document).ready(function () {
    if (!$.browser.msie) {
        $(".daysPictures > ul > li > a").hover(
            function () {
                var imageId = $(this).attr('id');
                //$(".picHovered").hide();
                if ($(this).siblings().filter(".picHovered").length > 0) {
                    $(this).siblings().filter(".picHovered").show();
                } else {
                    var image = $(this).children().attr('src').replace(/200_/, "140_");
                    var extra = ($(this).children().width() > 200) ? 'width: 140px; ' : '';
                    extra += 'margin-left: -70px; left: 50%;'; // ' + Math.ceil($(this).children().width() / 2) + '
                    var extraStyles = ' style="' + extra + '"';
                    var headline = $(this).attr('title');
                    var url = $(this).attr('href');
                    $(this).after('<div id="ic-' + imageId + '" class="picHovered"' + extraStyles + '><a href="' + url + '"><img src="' + image + '"></a><p><a href="' + url + '">' + headline + '</a></p></div>');
                }
                $(".picHovered").hover(
                    function () {}, 
                    function () {
                        $('#ic-' + imageId).fadeOut('fast');
                    }
                );
    
            }, function () {}
        );
    }
});


