$(function() {



	$('.greenridgeSlideShow').cycle({
		fx: 'fade'
	});
	

	if ($('#appendixRight').length) {
		if (window.location.href.indexOf('stockist/index') != -1) {
			return;
		}
		
		attachTooltips();
		
		$(".tipsy").tipsy({fade: true});

		
		if (window.location.href.indexOf('page/About') != -1) {
			$('#appendixRight').css('position', 'relative');
			$('#appendixRight').css('bottom', '55px');
			$('#appendixRight').css('padding-top', '5px');
		}
		
		$(".slideshowNav").cycle({ 
			random: 1,
			timeout:  8000
		});
		
	}	

	if ($('#alphaAnchorLinks').length) {
		$('ul.alphaList li.letterHeading').each(function(i) {
			var letter = $(this).html();
			$(this).attr('id', 'letterHeading_'+letter);
			var anchorLink = '<a href="'+window.location.pathname+'#letterHeading_'+letter+'">'+letter+'</a>';
			$('#alphaAnchorLinks').append(anchorLink);
		});
	}

	$('.integriaBrandsTooltip').mouseover(function() {
		$('#integriaBrands').show();
	});
	$('#integriaBrands').mouseleave(function() {
		$('#integriaBrands').hide();
	});

	//$('#ingredientsTable tr:even td')

});
