$(document).ready(function()
{	
	//For the main nav drop-down
	$('.drop').hide();

	$('#nav li').hover(
		function() {
			$(this).find('a').addClass("active");
			$(this).children('.drop').not(':visible').fadeIn(150);
		},
		function() {
			$(this).find('a').removeClass("active");
			$(this).children('.drop').fadeOut(50);
		}

	);
});

