$(document).ready(function() {

	//alert('loaded');

	$('.module').hover(
		function() {
			
			var strId = $(this).attr('id');
			
			var strDiv = '#drop_' + strId;

			var strDisplay = $(strDiv).css('display');
			
			if(strDisplay=="none")
			{
				$('.dropMenu:visible').hide();
							
				$(strDiv).show();
			}
		}
		, 
		function () {
			
		}
	);
	
	$('body').click(function() {
		
		//$('.dropMenu:visible').hide();
	
	});
	

});