// JavaScript Document
	jQuery(document).ready(function($) {
	$(".menu>li").hover(
	  function () {
		$(this).children("div").fadeIn("fast"); 
	  },
	  function () {
		$(this).children("div").fadeOut("fast"); 
	  }
	);
	$(".menu>li>div").hover(
			   
	  function () {
		$(this).parent().addClass("current2");
		
	  },
	  function () {
		$(this).parent().removeClass("current2");
	  }
	);

	});
