// JavaScript Document

$(document).ready(function(){

			$(".dropdown").each(function(){
					
					$(this).hide();
				
				});	
	$(".dropit").hover(function(){
			
			$(this).find(".dropdown").css({'z-index' : '100'});
								
			var hoverText = $(this).find(".dropdown");
			
			$(hoverText).show();
			
		},
		function(){
			$(this).find(".dropdown").hide();
		});


	});
