$(function()
{		
	
	$(".firstlevel").click(function(event) {
		//event.preventDefault();

		$(".secondlevel").addClass('hidethis');
		$(this).next(".secondlevel").removeClass('hidethis');

		$(".hidethis").hide();
		
		$(this).next(".secondlevel").slideToggle(1);
		
		if($(this).parent().hasClass('active') != true)
        {
			$(".firstlevel").parent().removeClass('active');
			$(this).parent().addClass('active');
        }
		else
        {
            $(".firstlevel").parent().removeClass('active');
        }
		
        //		$(this).attr({ scrollTop: $(this).attr("id") });
		
		
		// $.scrollTo( $(this).attr("id"), 800, {easing:'elasout'} );

        if(typeof($(this).attr('jqlink')) != 'undefined')
            window.location.href = $(this).attr('jqlink');

	});
});