// JavaScript Document

$(document).ready(function(){

	$(".dropdown").each(function(){
			
			$(this).hide();
		
		});
	$(".drop").hover(function(){
			var hoverText = $(this).find(".dropdown");
			
			$(hoverText).fadeIn();
			
		},
		function(){
			$(this).find(".dropdown").fadeOut();
		});


	});
