// JavaScript Document
$(function(){
	$('#sitemap').treeview({
		persist: "location",
		collapsed: true,
		unique: true
		
	});
	
	$('#pause').click(function() { $('#contentCol1Green').cycle('pause'); return false; });
	$('#play').click(function() { $('#contentCol1Green').cycle('resume'); return false; });
	
	$('#tipsSlider').hover(
		function() { $('#controls').fadeIn(); },
		function() { $('#controls').fadeOut(); }
	);
	
	$('#contentCol1Green').cycle({
		fx:     'fade',
		speed:   1200,
		timeout: 10000,
		next:   '#next',
		prev:   '#prev'
	});
	
	$('#homePromoSlider').cycle({
		fx:     'fade',
		speed:   1200,
		timeout: 3500,
		next:   '#homePromoNext',
		prev:   '#homePromoPrevious'
	});
});	
