	/*function funcHide(strID)
	{
		objAboutId = document.getElementById(strID);
		objAboutId.style.display = 'none';
	}	
	function funcDisDropDown(textid, divid)
	{
		var offset = $("#" + textid).offset();
		var left = offset.left;
		left = left + 1;
		left = left + "px";
		var height = $("#" + textid).height();
		var top = offset.top + height ;
		top = top + 45;
		top = top + "px";
		
		
		var listDiv = $("#" + divid);
		listDiv.css({"left" : left, "top": top}).show("");
	}*/
	
	$(function()
	{
		$(".jqMainMenu li").mouseenter(function()
										{
											var current = $(this);
											var submenu = current.children("ul:first");
											var currentOffset = current.position();
											
											if(submenu.length > 0)
											{
												if(submenu.is(".jqSubmenu"))
												{
													submenu.css({
																	position:"absolute",
																	top: currentOffset.top - 1,
																	left : current.outerWidth()
																}).show();
												}
												else
												{
													submenu.css({
																	position:"absolute",
																	left : currentOffset.left,
																	top : currentOffset.top + 49
																}).show();
												}
											}
											
											
										})
								.mouseleave(function()
											{
													$(this).children("ul:first").hide();
											});
	});
