function showhotshot (evt) {
	var tipNameSpaceURI = "http://www.w3.org/1999/xhtml";
	if(!tipContainerID){ var tipContainerID = "hotshotcontainer";}
	var tipContainer = document.getElementById(tipContainerID);

	if(!tipContainer) {
	  tipContainer = document.createElementNS ? document.createElementNS(tipNameSpaceURI, "div") : document.createElement("div");
		tipContainer.setAttribute("id", tipContainerID);
		
	  tipContainer.innerHTML = "Break Hotshots have, at some point, gotten 100k+ views in 7 days without reaching the home page.";
	  tipContainer.innerHTML += "<br /><br /><div style='text-align:center;'><img src='http://media1.break.com/static/live/v1/img/mybreak/breakpro_logo_med.gif' /><br /><a href='javascript:hidehotshot();'>Close</a></div>";

	  document.getElementsByTagName("body").item(0).appendChild(tipContainer);
	}

	var x=0, y=0;
	if (document.all) {//IE
		//x = (document.documentElement && document.documentElement.scrollLeft) ? document.documentElement.scrollLeft : document.body.scrollLeft;
		//y = (document.documentElement && document.documentElement.scrollTop) ? document.documentElement.scrollTop : document.body.scrollTop;
		//x += window.event.clientX;
		//y += window.event.clientY;
		
		x = getRealLeft(window.event.srcElement);
		y = getRealTop(window.event.srcElement);
		
	} else {//Good Browsers
		//x = evt.pageX;
		//y = evt.pageY;
		x = evt.target.x;
		y = evt.target.y;
	}

	//if (window.location == "http://www.break.com/" ||
	    
	//)
	//{
        //	tipContainer.style.left = (x - 200) + "px";
        //}
        //else
        //{
        //	tipContainer.style.left = (x + 200) + "px";
        //}
        tipContainer.style.left = (x + 200) + "px";
        tipContainer.style.top = y + "px";
	tipContainer.style.display = "block";
}

function hidehotshot () {
	document.getElementById("hotshotcontainer").style.display = "none";
}

function pointycursor () {
	document.body.style.cursor='pointer';
}

function normalcursor () {
	document.body.style.cursor='default';
}

function hotshotinit () {
	var tipNameSpaceURI = "http://www.w3.org/1999/xhtml";
	if(!tipContainerID){ var tipContainerID = "hotshotcontainer";}
	var tipContainer = document.getElementById(tipContainerID);

	if(!tipContainer) {
	  tipContainer = document.createElementNS ? document.createElementNS(tipNameSpaceURI, "div") : document.createElement("div");
		tipContainer.setAttribute("id", tipContainerID);
		
	  document.getElementsByTagName("body").item(0).appendChild(tipContainer);
	}

	tipContainer.innerHTML = "Break Hotshots have, at some point, gotten 100k+ views in 7 days without reaching the home page.";
	tipContainer.innerHTML += "<br /><br /><div style='text-align:center;'><img src='http://media1.break.com/static/live/v1/img/mybreak/breakpro_logo_med.gif' /><br /><a href='javascript:hidehotshot();'>Close</a></div>";
	tipContainer.style.display = "none";

}

function getRealLeft(elem) {
	xPos = eval(elem).offsetLeft;
	tempEl = eval(elem).offsetParent;
  	while (tempEl != null) {
  		xPos += tempEl.offsetLeft;
  		tempEl = tempEl.offsetParent;
  	}
	return xPos;
}

function getRealTop(elem) {
	yPos = eval(elem).offsetTop;
	tempEl = eval(elem).offsetParent;
	while (tempEl != null) {
  		yPos += tempEl.offsetTop;
  		tempEl = tempEl.offsetParent;
  	}
	return yPos;
}