$(document).ready(function(){
	
	if( $('#main-rotational .section-nav h3 a').length > 0 )
	{
		$('.section-nav').hover( function()
		{
			$('.section-nav ul').slideDown();
		},
		function()
		{
			$('.section-nav ul').slideUp();
		});
	}
	
	$('#main-rotational .spinner').cycle({
		speed: 1250,
		timeout: 7000,
		pager:  '#main-rotational .nav ul', 
		pagerAnchorBuilder: function(idx, slide) {
			return '#main-rotational .nav ul li:eq(' + idx + ') a';
		}
	});
	
	$('a.gallery').lightBox({
		fixedNavigation:true,
		imageLoading: '/new_08/images/lightbox-ico-loading.gif',
		imageBtnClose: '/new_08/images/lightbox-btn-close.gif',
		imageBtnPrev: '/new_08/images/lightbox-btn-prev.gif',
		imageBtnNext: '/new_08/images/lightbox-btn-next.gif'
	});
	
	if( $('.eco-friendly .nav').length > 0 ){ $('.eco-friendly .nav').tabs({ selected: 0 }); }
	
	if( $('.horticulture-list').length > 0 ){ $('.horticulture-list').change( function(){ $('.hort-children').hide(); $('#tog-horticulture #'+$(this).val()+'').show(); }); }
	
});