$(document).ready(
  function()
  {

	/* top menu */
	$(".top_menu_new table tr td").hover(
	function() {				
		$(this).addClass("hover");
  	},
	function() {				
		$(this).removeClass("hover");
  	}
	);


	$('table.tbl_other_n div.pic_n a').hover(
	function()
	{
		$(this).css("position","relative");
		$(this).children('span img').css("z-index","1000");
		$(this).children('span').show();
	},
	function()
	{
		$(this).children('span').hide();
		$(this).css("position","");
	}	
	);

  }

);