jQuery().ready(function() {
	
	$('.tabs > ul').tabs();
	jQuery('#acc1').accordion({
		autoheight: false,
		animated: false
	});
	jQuery('#acc2').accordion({
		autoheight: false,
		animated: false,
		active: 99
	});
	jQuery('#acc3').accordion({
		autoheight: false,
		animated: false,
		active: 99
	});
	
	$('.menu li.mainlevel').bind("mouseover", function(e) {
	  $(this).find(".submenu").css('display','block');
	  $(this).find("a").addClass('hovered');
	});
	
	$('.menu li.mainlevel').bind("mouseout", function(e) {
	  $(this).find(".submenu").css('display','none');
	  $(this).find("a.hovered").removeClass('hovered');
	});
	
	$(".acc_h").hrzAccordion({fixedWidth:"450",openOnLoad:1});
	
});
