// JavaScript Document

$(document).ready(function(){
	
	topNav();

});

function topNav(){
	
	$('li.dropdown').mouseenter(function(){
		$(this).children('ul').slideDown(100);								 
	}).mouseleave(function(){
		$(this).children('ul').slideUp(200);		
	});
	
}
