
jQuery(function(){
    jQuery(window).resize(center_left_block).scroll(center_left_block);
    center_left_block();
    jQuery('*[lang="ajax"]').colorbox();
    jQuery("*[lang='show_inner']").each(function(){
        
        jQuery(this).colorbox({width:"800", inline:true, href:"#"+jQuery(this).attr('href')});
    });
    jQuery("*[lang='iframe']").each(function(){
        
        jQuery(this).colorbox({width:"773", height:"535", iframe:true,href:jQuery(this).attr('href')});
    });    

    jQuery(".example5").colorbox();


});

function center_left_block(){
    var b = jQuery('#left_block');
    h = b.height();
    b.css('left',0);  
    var scrollTop = document.body.scrollTop ? document.body.scrollTop : document.documentElement.scrollTop;
    var wh = jQuery(window).height();
    b.css('top',scrollTop+wh/2-h/2);
}
