/*
NitX.com JavaScript
By Nitin Advani
Built on jQuery 1.3.2
*/
// make sure jQuery has loaded
if (typeof(jQuery)=='undefined') {
	var e = document.createElement('script');
	e.src = '/sys/jquery.min.js';
	e.type='text/javascript';
	document.getElementsByTagName("head")[0].appendChild(e);
}
$(document).ready(function() {
	// Screw IE6, Show a modal window to tell them to upgrade and show them how crappy IE6 is
	var ie6anchor = (document.location.toString().match('#') ? document.location.toString().split('#')[1] : "");
	if ((jQuery.browser.msie && (parseInt(jQuery.browser.version) == 6)) || ie6anchor == "ie6") {
		$('#modalmask').css({'width':$(window).width(),'height':$(document).height()});
		$('#modalmask').fadeIn(1000);
		$('#modalmask').fadeTo("slow",0.8);
		$('#modaldialog').css('top', $(window).height()/2-$('#modaldialog').height()/2);
		$('#modaldialog').css('left', $(window).width()/2-$('#modaldialog').width()/2);
		$('#modaldialog').fadeIn(2000);
		$(window).bind('resize', function() {
			$('#modalmask').css({'width':$(window).width(),'height':$(document).height()});
			$('#modaldialog').css('top', $(window).height()/2-$('#modaldialog').height()/2);
			$('#modaldialog').css('left', $(window).width()/2-$('#modaldialog').width()/2);
		});
	}
});
