$(function(){
	// @ menu
    $("ul.dropdown li, ul#userinfo li").hover(function(){
        $(this).addClass("hover");
        $('ul:first',this).css('visibility', 'visible');
    }, function(){
        $(this).removeClass("hover");
        $('ul:first',this).css('visibility', 'hidden');
    });
	
	// @ tabs
	$('#tabs-1, #tabs-2, #tabs-3, #tabs-4, #tabs-5, #tabs-6').tabs(); //Hvis der skal benyttes flere tabs på samme side, skal de regges her
	
	// @ ingen resize på textarea's i chrome & safari ($.browser.safari rammer både chrome og safari (webkit))
	if ( $.browser.safari ) {
		$('textarea').css({'resize':'none'});
	};
});