/*	DOCUMENT READY - AUTO START(S)	*/
var $jNoC = jQuery.noConflict();
$jNoC(document).ready(function() {							   
	$jNoC('a[rel*=facebox]').facebox({loading_image : 'loading.gif',close_image   : 'closelabel.gif'});	
	$jNoC("ul#ticker").liScroll({travelocity: 0.075});
	$jNoC("#signup").validate();
		
	//If the User resizes the window, adjust the #container height
	$jNoC(window).bind("resize", resizeWindow);
	function resizeWindow( e ) {
		var newWindowWidth = $jNoC(window).width()+"px";
		var newWindowHeight = $jNoC(window).height();		
		if(newWindowHeight < 932){
			var vAdj = (newWindowHeight - 932)/2;
			$jNoC("#banner").css("top", vAdj);
		}else{
			var vAdj = (932 - newWindowHeight)/2;
			$jNoC("#banner").css("top", vAdj);
		}

	}

	if($jNoC('#ticker').has("li").length == 0) $jNoC('#under_left_col').hide();	
});

/*	FUNCTION FARM	*/
	function validate_terms(){
		if(document.signup.terms_agree.checked==true){
			document.signup.accept.disabled=false;
		}else{
			document.signup.accept.disabled=true;
		}
	}

