// JavaScript Document
$(document).ready(function(){
	
$(".menu table tr td.menud").mouseover(function(){
	$(".menu td.menud table").hide();
	$(this).find("table").css({"opacity": "0.6" }).show();

; 
	}).mouseout(function(){
	$(".menu  table tr td.menud table").hide(); 
	$(this).find("a.menu").css("background","none");
	});
$(".menu table tr td.menud table tr td ").mouseover(function(){
	$(this).addClass("on");
	//$(this).css({"background": "#0A6DDD" });

	}).mouseout(function(){
	$(this).removeClass("on");	
	//$(this).css({"opacity": "1" });   
	});
	
	
	/////////////////////////

	//////////////////////////
  });

