// Controls simple animaitons on the page

$(document).ready(function(){

	//Animate Homepage Gallery Section
	$("#gallery-header").hide();
	$("#gallery-header").slideDown('slow');
	
	$("a.slideup").click(function(){
		$("#gallery-header").slideUp('slow');
	})
	

});