// JavaScript Document


//Activate Immediately
$(document).ready(function(){
$("#about").hide();

//Show buttn	
	$("#about_btn").show();
	$("#about_btn").hover(function() {$(this).css( {backgroundPosition:"0px -24px"});},function () {$(this).css( {backgroundPosition:"0px 0px"});});
	
//Reveals & Hides ABOUT
$("#about_btn").toggle(
	function (){$("#about").slideDown("slow");},
	function hideEtc(){$("#about").slideUp("slow");}
);

});

	
