// JQuery goodness
/*$(function() {
	// Disable right-click
	$('img').bind("contextmenu", function() { return false; });
});

sfHover = function() {
	var sfEls = document.getElementById("sucker").getElementsByTagName("LI");
	for (var i=0; i<sfEls.length; i++) {
		sfEls[i].onmouseover=function() {
			this.className+=" sfhover";
		}
		sfEls[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
		}
	}
}
if (window.attachEvent) window.attachEvent("onload", sfHover);

function popitup(theURL,theHeight,theWidth)
{
	if( isNaN(theHeight) )		theHeight = 400;
	if( isNaN(theWidth) )		theWidth = 200;
	
	newwindow=window.open(theURL,'popUp','height='+theHeight+',width='+theWidth);
	if (window.focus) {newwindow.focus()}
}
*/
