
$(document).ready(function() {	
	$(".megadropdown.orange")
	.hide()
	.delay(2000)
	.slideDown(2000,'easeInOutExpo')
	$(".container") 
	.hide()
	.delay(1000)
	.animate({ 
      opacity: 'show',
	  width:'show'
    }, 2000,'easeInOutExpo')	
	$("#level-three")
	.hide()
	.delay(4000)
	.fadeIn('slow')
	$(".megadropdown.orange a").click(function(e) {
		$("li").removeClass('current')
		$(this).parent().addClass('current')
		var url = $(this).attr('href') + ' #main';
		$('#content-loader').fadeOut(1000,function(){
		$('#content-loader').load(url , function() {
			$(this).fadeIn(1000, function(){ $.getScript("js/accordionMenuWYM.js")})})})
		e.preventDefault();
		$("#level-three")
	.hide()
	.delay(4000)
	.fadeIn('slow')
	})
});
