$(function(){
	$("#slideActivate").toggle(
		function(){
			$(this).text("Hide Background Info");
			$("body").css({"background-repeat":"no-repeat"});
			$(".container").animate({"top": "-" + $('.container').height() + "px"}, 1500);
			if($(".bgcaption")) { $(".bgcaption").fadeIn(); }
		},
		function(){
			$(this).text("About the Background");
			$(".container").animate({"top": "0"});
			$("body").css({"background-repeat":"repeat"});
			if($(".bgcaption")) { $(".bgcaption").fadeOut(); }
		}
	)
});
