/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
function showLoad(){
    $(".loading").show();
}
function hideLoad(){
    $(".loading").hide();
}
function resize()
{
    menubarlist = $("#menubar li");
    menubarlist.hover(function(){
        $(this).find("ul").show();
    },function(){
        $(this).find("ul").hide();
    });

}
$(document).ready(resize);
$(".message").ready(function(){    
    setTimeout(function(){
        $(".message").hide();
    }, 2000);
});
