// JavaScript Document

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





	$(".link").click(function(){
			
				$(".box").each(function(){
					
					$(this).hide();
				
				});	
					
			var hoverText = $(this).find(".box");
			
			$(hoverText).show();
			
		},
		function(){
			$(this).find(".box").hide();
		});


	});