﻿jQuery(document).ready(function() {
	// do something here
		jQuery(".subMenu").css("display","none")


	jQuery(".mainMenu").hover(function() {
		jQuery(".subMenu").css("display","none")
		jQuery(this).next(".subMenu").css("display","block")
	},
		function() {
		jQuery(".subMenu").css("display","none")
	}	
	
	);


	jQuery(".subMenu").hover(function() {
		jQuery(this).css("display","block")
	},
		function(){
		jQuery(this).css("display","none")
	});	
});
