// JavaScript Document

// load and unload events for secondary pages

$(document).ready(function() {
	// page load
	$('#backleft').fadeIn(1200);
	$('#contentarea').fadeIn(1200);
});

function drawingBoard() {
	$('#backleft').fadeOut('slow');
	$('#contentarea').fadeOut('slow',function(){
		window.location = "../"; 
	});
}
function drawingBoardLogin() {
	$('#backleft').fadeOut('slow');
	$('#contentarea').fadeOut('slow',function(){
		window.location = "../contact/"; 
	});
}