
var queryString;

$(document).ready(function(){

	highlightNavItem()

	// assign lightbox event magic to the some links
	$('a.lightBox').lightBox(); 
	
	// show the default item on pageLoad
	toggel("1","")
});

// function toggel is invoked by via the flash product scroller
function toggel(id,total){

	// hide any currently open items
	$(".sandwich").hide();
	
	// tack on the rollover text to this particular products' info and display the text
	$("#nutrition-meta-info").appendTo("#joy"+id+" .nutrition-unit");
	$("#nutrition-meta-info").show();
	
	// show the product content
	$("#joy"+id).show();
}










