
var toolbar = [['Source','Preview'],
['Cut','Copy','Paste','PasteText','PasteFromWord','-' ,'SpellChecker', 'Scayt'],
['Undo','Redo','-','Find','Replace','-','SelectAll','RemoveFormat'],
['Bold','Italic','Underline','Strike','-','Subscript','Superscript'],
['NumberedList','BulletedList','-','Outdent','Indent','Blockquote','CreateDiv'],
['JustifyLeft','JustifyCenter','JustifyRight','JustifyBlock'],
['Link','Unlink','Anchor'],
['Image','Flash', 'Table','HorizontalRule','SpecialChar'],
['Styles','Format','Font','FontSize'],
['TextColor','BGColor']];

$(document).ready(function() {
    $(".tabs").tabs();
    $(".accordion").accordion();

    $('#debugcontainer').width(800).addClass('center-out');
    $('#debug').accordion();

    $(".menu-main li").hover(
        function () {
            $(this).addClass('hover');
        },
        function () {
            $(this).removeClass('hover');
        });
    $("button, input:submit").button();
    $(".scrollable").scrollable();
    $('.tester').corner();
    $('.logos ul li a').colorbox();

   
    $('.thumb img').click(function(){
        var dat = $('#' + $(this).attr('rel'));
        var name = $(this).attr('name');
        var data = '<img name="' + name + '" src="/process/image/assets/images/screenshots/' + name + ':720|570">';
        $('.content').html(dat.html());
        $('.content .webinfo .image').html(data);
    });

    $('*').each(function(index) {
        var tag = $(this).get(0).tagName;
        var idx = tag + index;
        if (this.id == ''){
            this.id = idx;
        }
    });
});
