// NOTE: USE 'jQuery' variable to access jQuery functions. NOT '$' variable.
// Add Scroller Object

jQuery(document).ready(function(){
    $jScroller.add("#championship_conteiner","#championship_scroller","left",10, true);
    $jScroller.start();
});

function ShowCode(id)
    {
        if (!jQuery('#codeblock_'+id).is(":hidden"))
            {
                jQuery('#showcodebutton_'+id).val('Получить код');
                jQuery('#codeblock_'+id).css("display","none");
                return;
            }
        jQuery('#showcodebutton_'+id).val('Скрыть код');
        var width=jQuery('#width_'+id).val();
        var max_width=jQuery('#max_width_'+id).val()
        if (width>max_width)
            {
                alert('Размер баннера не может быть больше размера картинки');
                return;
            }
        var code=jQuery('#backup_code').html();
        code=str_replace("@ID@",id,code);
        code=str_replace("@WIDTH@",width,code)
        jQuery('#code_'+id).html(code);
        jQuery('#codeblock_'+id).css("display","block");
    }
function str_replace(search, replace, subject) {
    return subject.split(search).join(replace);
}