// TOP DROP DOWN MENU
$(document).ready(function (){
	$('.topNav .dropBox').hide();
	$('.topNav li').hover(function()
	{
		$(this).children('a').addClass('current');
		$(this).children('.dropBox').show();
	},
	function() {
		$(this).children('a').removeClass('current');
		$(this).children('.dropBox').hide();		
	}	
	);
})
