/*
============================================
	Global jQuery file
	Custom functions, processes, etc
============================================
*/

$(function(){
		   
	$("#hidden").hide();
	var boxVisible = false;
	
	$("#hidden-control").live("click", function(event) {
		if (!boxVisible) {
			boxVisible = true;
			$("#testimonials").slideUp();
			$("#hidden").slideDown();
		} else {
			boxVisible = false;
			$("#testimonials").slideDown();
			$("#hidden").slideUp();
		}
	});

});
