$(window).load(function(){
	/*hide the forms on the edit page*/
	if($('.hidden_form').length){
		$('.hidden_form').hide();
	}
	/*un hide the js*/
	if($('.hidden_js').length){
		$('.hidden_js').removeClass('hidden_js');
	}
	/*email address default text show & hide */
	if($('#interest_email_address').length){
		$('#interest_email_address').val("enter your email address");
		$('#interest_email_address').focus(function(){
			current = $(this).val();
			if(current == "enter your email address"){
				$(this).val('');
			}
		});
		$('#interest_email_address').blur(function(){
			current = $(this).val();
			if(current == ""){
				$(this).val('enter your email address');
			}
		});
	}

	/*if home page - fade in and out points*/
	if($('#points').length){
		/*hide all child divs*/
		$('#points').children().hide();
		/*show first*/	
		$('#points').children("[rel='first']").show();
		$('#points').children("[rel='first']").addClass('selected');
		pointfade = setTimeout("fade_points()", 8000);
	}

});


/**** functions ****/
function fade_points(){
	$('#points .selected').hide(400);	
	rel = $('#points .selected').attr('rel');
	if(rel == "last"){
		$('#points .selected').removeClass("selected");
		$('#points').children("[rel='first']").show(300);		
		$('#points').children("[rel='first']").addClass("selected");
	}else{	
		next = $('#points .selected').next('div');		
		$('#points .selected').removeClass("selected");
		$(next).addClass("selected");
		$(next).show(300);				
	}	
	setTimeout("fade_points()", 8000);
}
