// JavaScript Document
function back(){
history.back();
 }
//popup script
jQuery.fn.fadeToggle = function(speed, easing, callback) {
  return this.animate({opacity: 'toggle'}, speed, easing, callback);  
};
 
$(document).ready(function() {
		$('#tellfriend').hide();
  		$('a.email, #tellfriend a.close').click(function() {
    		$("#tellfriend").fadeToggle('slow');
			return false;
  		});
		$('#certification').hide();
		$('a.certification, #certification a.close').click(function() {
			$("#certification").fadeToggle('slow');
			return false;
		});
		$('#ingredients').hide();
		$('a.ingredients, #ingredients a.close').click(function() {
			$("#ingredients").fadeToggle('slow');
			return false;
  		});
}); 


