
// Menu Animation & State Scrpts for Brines Decorating
$(document).ready(function(){

$('#megaMenu').hover(function(e) {
		e.stopPropagation();
		//console.log("I'm Hovering");
		$('.megaMenuSubMen').fadeIn('fast');
	}, function() {
		$('.megaMenuSubMen').fadeOut('fast');
	});

}); 



