$(document).ready(function(){
						   $('.top-nav').hover(function(){
														$(this).children('.dropdown').stop(true, true).slideDown('fast');
														}, function(){
														$(this).children('.dropdown').stop(true, true).slideUp('fast');	
														});
						   });
