
//<![CDATA[
$(document).ready(function(){
	$(".slider").hide();
	$(".navgroup h2").each(function() {
		$(this).html( '<a href="javascript:void(0);">' + $(this).text() + '</a>' ); 
	});			
	$(".navgroup").addClass("js");
	$(".navgroup h2").click( function(){ 
				$(this).parent().find('.slider').slideToggle("normal");
				$(this).parent().toggleClass('open');
			});
	// $(".navgroup h2").eq(0).click();
	$("#nav-main ul").superfish({
			hoverClass	: 'hover',
			delay		: '1000',
			animation	: { height:'show' },
			speed		: 1,
			delay		: 250					
	});
});
//]]>