$(document).ready(function() {
	$(".itemRecentPhotos").click(function(){
		$("#scrollerContent").animate({top: '0px'}, 300);
		$(".currentWidgetItem").animate({top: '0px', height: "46px"}, 300);
	});
	$(".itemUpcomingEvents").click(function(){
		$("#scrollerContent").animate({top: '-282px'}, 300);
		$(".currentWidgetItem").animate({top: '46px', height: "46px"}, 300);
	});
	$(".itemVerseOfTheMonth").click(function(){
		$("#scrollerContent").animate({top: '-564px'}, 300);
		$(".currentWidgetItem").animate({top: '92px', height: "46px"}, 300);
	});
	$(".itemRecentSermons").click(function(){
		$("#scrollerContent").animate({top: '-846px'}, 300);
		$(".currentWidgetItem").animate({top: '138px', height: "46px"}, 300);
	});
	$(".itemHymnOfTheMonth").click(function(){
		$("#scrollerContent").animate({top: '-1128px'}, 300);
		$(".currentWidgetItem").animate({top: '184px', height: "46px"}, 300);
	});
	$(".itemMissionaryOfTheMonth").click(function(){
		$("#scrollerContent").animate({top: '-1410px'}, 300);
		$(".currentWidgetItem").animate({top: '230px', height: "51px"}, 300);
	});
});


