﻿// JScript File

var obj = null;

$(document).ready(function() {
 $(".DisplayContainer").hover(function() {
	var t =$(this).find(".SubMenu");
//	alert($(t).attr('value'));
//	var tv = $(t).attr('value');
	$(t).show();
  }, function() {
	$(this).find(".SubMenu").hide();
  });
});
