
$(function(){

    // Tabs
    $('#tabs').tabs();

    $('#dialog_link, ul#icons li').hover(
        function() { $(this).addClass('ui-state-hover'); },
        function() { $(this).removeClass('ui-state-hover'); }
    );
});


var current = '';

// Content in Div Laden
function content(site){
    current = site;
    $("#tabs-1").hide('slow');    
    $("#tabs-1").html('');
    $("#tabs-1").load('html/' + current + '.html');
    window.setTimeout("loadcontent()", "500");
    
}   

function loadcontent() {
    $("#tabs-1").show('blind');        
}
