// JavaScript Document

function toggleAboutOn(){
		$('#about_content').animate({height: '300px'}, 'fast');
	}
	
	function toggleAboutOff(){
		$('#about_content').animate({height: '0px'}, 'fast');
	}
	
	var state=0;
	
	function toggleAbout(){
		
		
		if(state==0){
			toggleAboutOn();
			state=1;
		}
		
		else if(state==1){
			toggleAboutOff();
			state= 0;
		}; 
	};
	
	//HIDE SELECTED
	function showIllustration(){
		$('li.illustration').show('slow');
		$('li.print').hide('slow');
		$('li.web').hide('slow');
		$('#contactme').hide('fast');
	}
	function showPrint(){
		$('li.illustration').hide('slow');
		$('li.print').show('slow');
		$('li.web').hide('slow');
		$('#contactme').hide('fast');
	}
	function showWeb(){
		$('li.illustration').hide('slow');
		$('li.print').hide('slow');
		$('li.web').show('slow');
		$('#contactme').hide('fast');
	}
	function showcontactme(){
		$('li.illustration').hide('fast');
		$('li.print').hide('fast');
		$('li.web').hide('fast');
		$('#contactme').show('fast');	
	}
	
	function showinteriorcontactme(){
		$('.controls_right').hide('fast');
		$('#gallery').hide('fast');
		$('#contactme').show('fast');	
	}
