// for the mega menu drop down on step by step pages.
$(document).ready(function(){
	$("div.stepMenuContainer div.orangeLine").hide();
	$("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;
	});   
});