function pageInit($section)
{
	switch($section)
	{
		case "frontpage":
			frontpage();
			break;
		default:
			break;
	}
}

function frontpage()
{
	$(".register_div").live("mouseover", function(){
		$(".contentText_frontpage").css({'background-image' : 'url("/img/main_register_copy.gif")'});
		$(".contentText_link").attr('href', '/hope_net');
	});

	$(".support_div").live("mouseover", function(){
		$(".contentText_frontpage").css({'background-image' : 'url("/img/main_support_copy.gif")'});
		$(".contentText_link").attr('href', '/hope_net');
	});

	$(".difference_div").live("mouseover", function(){
		$(".contentText_frontpage").css({'background-image' : 'url("/img/main_difference_copy.gif")'});
		$(".contentText_link").attr('href', '/hope_net');
	});

	$(".understand_div").live("mouseover", function(){
		$(".contentText_frontpage").css({'background-image' : 'url("/img/main_understand_copy.gif")'});
		$(".contentText_link").attr('href', '/hope_and_cope');
	});
}

function loggedin()
{

}

function register()
{
	
}


