// JavaScript Document
	jQuery(document).ready(function($) {
	$(".menu>li").hover(
	  function () {
		$(".menu ul").hide();
		$(this).children("ul").slideDown("fast"); 
	  },
	  function () {
		$(this).children("ul").slideUp("fast"); 
		$(".proMenu").hide();
	  }
	);
	$("#mePro>ul>li>a").hover(
	  function () {
		$(".proMenu").hide();
		$(this).next("div").show(); 
	  },
	  function () {}
	);
	$(".menu>li>ul").hover(
			   
	  function () {
		$(this).parent().addClass("hover");
		
	  },
	  function () {
		$(this).parent().removeClass("hover");
	  }
	);
	$(".topSelect p").click(function() {
		if($(".topSelect ul").is(":hidden")){
			$(this).next("ul").slideDown("fast"); 
		}else{
			$(this).next("ul").slideUp("fast");
			}
	  });
	$(".topSelect ul li").hover( 
	  function () {
		$(this).addClass("hover");
	  },
	  function () {
		$(this).removeClass("hover");
	  }
	);
	$(".topSelect ul li").click( function () {
		var thisvalue = $(this).attr("thisvlue");
		var thistexts = $(this).text();
		$(".topSelect p").text(thistexts);
		document.getElementById("productStyle").value = thisvalue;
		$(".topSelect ul").hide();
	  });
	
	});
