// JavaScript Document$().ready(function() {		   	$(".register_now").click(function(event) {		event.preventDefault();		launchwin($(this).attr('href'),'register',"location=0,status=1,scrollbars=1,width=580,height=700");	});	});function fixContent() {	var newHeight = $('body').height();	if($('#header').size() > 0) newHeight -= $('#header').height();	if($('#footer').size() > 0) newHeight -= $('#footer').height();	if($('#sub_nav').size() > 0) newHeight -= $('#sub_nav').height();		var newWidth = $('body').width();	if($('#content').size() > 0) newWidth -= $('#content').width();	if($('#bottom_padded').size() > 0) {		newHeight -= 50;		if($('#subnav').size() > 0) newHeight -= $('#subnav').height();				$('#bottom_padded').height(newHeight);	}	if(newWidth <= $('#bg_headline').width()) {		$('#bg_headline').hide();			} else {		$('#bg_headline').show();	}	}function launchwin(winurl,winname,winfeatures){	newwin = window.open(winurl,winname,winfeatures);	if(javascript_version > 1.0)	{		setTimeout('newwin.focus();',250);	}}	
