$(function() {
	
	$('#slideshow').flash({
	    src: 'http://thepowerlieswithin.com/wp-content/themes/growingforward/slideshow.swf',
	    width: 960,
	    height: 640
	});

	$("#content_container").hide();
	$("#menubar").hide();
	$("#rnd_end").hide();
	
	$("#discover_more").click(function () { 
	      $("#slideshow").hide();
	      $("#discover_more").hide();
	      $("#content_container").show();
	      $("#menubar").show();
	      $("#rnd_end").show();
	      $('html, body').animate({scrollTop:0}, 'slow');
	    });
	    
	    /*$('#slideshow').cycle({ 
	        fx:    'fade', 
	        speed:  5500 
	     });*/
});