// for the mega menu drop down on step by step pages.
$(document).ready(function(){
	
	var stepMenu = $("#step_menus"); //Reference to menu's containing <div>
	
	if (stepMenu.children().length >= 1) { //only show if we can be sure there is a menu echoed out
		stepMenu.addClass("active");
	}

	$("div.stepMenuContainer a.menuTab").click(function(){
		$("div.stepMenuContainer div.orangeLine:visible").fadeOut("fast");
		if ($(this).next("*:visible").length == 0) {
			$(this).next().slideDown('easeout');
		}
		return false;
	});

	$("div.closeB a.close").click(function(){
		$(this).parent().parent().parent().fadeOut("fast");
		$("a.menuTab").removeClass("menuTabOn");
		return false;
	});
	
}); 
