$(document).ready(function() {
	$("#bodyText p").css("display","none");
	$("#bodyText p:first-child").css("display","block");
	$("#bodyText p:first-child").append(' <a href="#" class="read more">Read More</a>');
	$("#bodyText p:last-child").append(' <a href="#" class="read less">Close Text</a>');
	
	$('#slideshow').cycle({
		fx: 'uncover'
	});
	
	$(".read.more").click(function() {
		$("#bodyText p + p").slideDown("slow");
		$(this).fadeOut("slow");
		$('html, body').animate({ scrollTop: $("#bodyText p:first-child").offset().top-10 }, "slow");
		return false;
	});
	$(".read.less").click(function() {
		$("#bodyText p + p").slideUp("slow");
		$(".read.more").fadeIn("slow");
		$('html, body').animate({scrollTop:0}, 'slow');
		return false;
	});
});
