
var JQ = $;
JQ(document).ready(function(){
	Shadowbox.init({
		players:    ["flv", "iframe", "swf", "html", "img"]
	});
	//JQ(".bodytext a").attr('target', '_blank');
	//JQ(window).resize(function(){
	//	JQ("#hyperlife").offset({top:  JQ(window).height() - JQ("#hyperlife").outerHeight(), left: JQ(window).width() - JQ("#hyperlife").outerWidth()});
	//});
	//JQ("#hyperlife").offset({top:  JQ(window).height() - JQ("#hyperlife").outerHeight(), left: JQ(window).width() - JQ("#hyperlife").outerWidth()});
});

sfHover = function() {
	var sfEls = document.getElementById("nav").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);
