$(document).ready(function() {	
	// CSS :nth-child pseudo class is not omni-compatible in all browsers
	$('tr td:nth-child(2)').css('text-align','right');
	
	// Show or hide nutrition facts table
	$('#open_nutri_facts').click(function() {
		$('#nutrition_facts').css('visibility', 'visible');
		$(this).css('visibility', 'hidden');
	});
	$('#close_nutri_facts').click(function() {
		$('#nutrition_facts').css('visibility', 'hidden');
		$('#open_nutri_facts').css('visibility', 'visible');
	});

	// Show or hide storefront picture
	$('#store_circle').click(function() {
		$('#store_pic').show('fast');
	});
	$('#store_pic').click(function() {
		$(this).hide('slow');
	});

	// Display mission statement
	$('#open_mission_statement').bind('click', function() {
		$('#mission').show('slow');
		$(this).css('visibility', 'hidden');
	});
	$('#open_mission_statement').trigger('click');

	// Home page lightbox gallery
	$('#pops a').lightBox();

	// Really Simple Slideshow from reallysimpleworks.com
	$('#slideshow').rsfSlideshow();
});



