//accordion
$(document).ready(function() {
	setClickEvent("menu_header");
	setClickEvent("submenu_header");
});

function setClickEvent(className) {
	$("." + className).click(function() {
		if ( $(this).next().get(0) != null )
		{
			if ( $(this).next().get(0).className == "submenu" )
			{
				$(this).next().slideToggle();
			}
		}

	});
}

