// JavaScript Document
document.write('<div style="position:absolute;display:none;" id="cc_dropdown"  border="0" cellspacing="0" cellpadding="0" onMouseOver="document.getElementById(\'cc_dropdown\').style.display=\'\';" onMouseOut="document.getElementById(\'cc_dropdown\').style.display=\'none\'" >\
		<table width="140" border="0" cellspacing="0" cellpadding="0" style="padding-left:4px;margin-top:16px;">\
		<tr>\
		<td  valign="top" STYLE="background-color:#333333;opacity:0.8;filter: alpha(opacity=80);border-left:1px solid #999999;border-right:1px solid #999999;border-bottom:1px solid #999999;">\
		<div >\
		<table width="140" border="0" cellspacing="0" cellpadding="0"  >\
		<tr>\
		<td  height="20"  ></td>\
		<td class="droptxt"><a href="buytickets.htm" class="droptxt"> Buy Tickets </td>\
		</tr>\
		<tr>\
		<td  height="20"  ></td>\
		<td class="droptxt"><a href="seatingChart.htm" class="droptxt"> Seating Chart </td>\
		</tr>\
		<tr>\
		<td  height="20"  ></td>\
		<td class="droptxt"><a href="faq.htm" class="droptxt"> FAQ </td>\
		</tr>\
		</table>\
		</div>\
		</td>\
		</tr>\
		</table>\
	 </div>');

var act_cit_id;
function product(objec1){
act_cit_id=objec1.id;
var curleft = curtop = 0;
		if (objec1.offsetParent) {
		curleft = objec1.offsetLeft
		curtop = objec1.offsetTop
		while (objec1 = objec1.offsetParent) {
			curleft += objec1.offsetLeft
			curtop += objec1.offsetTop;
		}
	}
	document.getElementById('cc_dropdown').style.display="";
	document.getElementById('cc_dropdown').style.left = curleft-4+"px";
	document.getElementById('cc_dropdown').style.top = curtop+10+"px";
	
}

function product_hide1(){
	document.getElementById('cc_dropdown').style.display="none";
}
function activateActiveX() 
{ 
  var activeXObjTypes = new Array( "applet", "embed", "object" ); 
  for ( var i = 0; i < activeXObjTypes.length; i++ ) 
  { 
    var xObj = document.getElementsByTagName( activeXObjTypes[i] ); 
    for( var j = 0; j < xObj.length; j++ ) 
    { 
      xObj[j].outerHTML = xObj[j].outerHTML; 
    } 
  } 
} 