$(document).ready(function(){
		megaNav();		
		 $('.gallery a').lightBox();
});

function megaNav(){
$('#MenuContainer ul li .dropDown1').hide();
$('#MenuContainer ul li .dropDown2').hide();
$('#MenuContainer ul li .dropDown3').hide();
$("#MenuContainer li a").hover(
	function() {
		$(this).parent().find(".dropDown1").show();	
		$(this).parent().addClass("mouseOver");
		$(this).parent().find(".dropDown1").css('z-index','99');
		$(this).parent().hover(
		function() {
		}, 
		function(){	
				$(this).parent().find(".dropDown1").hide();
				$(this).parent().find(".mouseOver").removeClass("mouseOver");
			});
		},
		function(){
				$(this).parent().find(".dropDown1").slideDown(300).show();
			});

$("#MenuContainer .dropDown1 li a").hover(
	function() {
		$(this).parent().find(".dropDown2").show();	
		$(this).parent().addClass("mouseOver");
		$(this).parent().find(".dropDown2").css('z-index','100');
		$(this).parent().hover(
		function() {
		}, 
		function(){	
				$(this).parent().find(".dropDown2").hide();
				$(this).parent().find(".mouseOver").removeClass("mouseOver");
			});
		},
		function(){
				$(this).parent().find(".dropDown2").slideDown(300).show();
			});

$("#MenuContainer .dropDown2 li a").hover(
	function() {
		$(this).parent().find(".dropDown3").show();	
		$(this).parent().addClass("mouseOver");
		$(this).parent().find(".dropDown3").css('z-index','101');
		$(this).parent().hover(
		function() {
		}, 
		function(){	
				$(this).parent().find(".dropDown3").hide();
				$(this).parent().find(".mouseOver").removeClass("mouseOver");
			});
		},
		function(){
				$(this).parent().find(".dropDown3").slideDown(300).show();
			});
}
