$(document).ready(function(){
	
	$('#content-fader').hide();
	$('#content-fader').fadeIn(1000);
	
	$('#footfader').hide();
	$('#footfader').fadeIn(1000);
	
	$('.msgok').each(coolReveal);
	$('.msgerror').each(coolReveal);
	
	$('a.jsback').click(function(event) {
		handleJsBackClick(event);
	});
	
	$('A[rel="external"]').click( function() {
		window.open( $(this).attr('href') );
		return false;
	});
});

function coolReveal()
{
	$(this).hide();
	$(this).slideDown('slow'); 
}

function handleJsBackClick(oEvent)
{
	oEvent.preventDefault();
	history.back(1);
}
