$(document).ready( function() {

	$("ul.MainMenu li a").each(function() {
		$(this).click( function() {
			var cls;
			if ( $(this).hasClass('about') ){
				cls = 'about';
				populateBoard( cls + '.html' );
			
			} else if ( $(this).hasClass('work') ){
				cls = 'work';
				populateBoard( cls + '.html' );
			
			} else if ( $(this).hasClass('contact') ){
				mailConactBoard();
			}
		});
	});

populateBoard( 'work.html' );


});


function populateBoard( url ){
	$('#WhiteBoard').load( url, '', function(responseText, textStatus, XMLHttpRequest){
	$('.box').hover(function(){
	$(this).children('.portimage').stop().fadeTo(400, 0);
	}, function() {
	$(this).children('.portimage').stop().fadeTo(400, 1);
	});
});

}


function mailConactBoard( url ){
		$('#ContactEmailDrop').slideToggle("slow");
}




