$(document).ready(function() {
    if ($('.content_bloc').size()) {
        $('.content_bloc #spectacle_content').insertAfter('.content_bloc');
    }
    $('.spectacle_hover').remove();
    $('.spectacle_item').mouseenter(function() {
        var os = $(this).offset(), t = this, hover;
        hover = $('<div class="spectacle_hover"></div>').css(
            {
                top    : os.top,
                left   : os.left
            }
        ).click(function() {
            document.location.href = base_url + $('a:first', t).attr('href').replace(base_url, '');
            return false;
        }).mouseleave(function() {
            $('.spectacle_hover').remove();
        }).appendTo('body').get(0);
        $('<img src="static/images/pix.gif">').css(
            {
                width  : $(t).width() - 6,
                height : $(t).height() - 6
            }
        ).appendTo(hover);
    });
    if ($.browser.msie) {
        $('div.spectacle *').css({
            position : 'relative'
        });
    }
});

