$(document).ready(function(){
	$('a[rel="external"]').attr('target','_blank');
	$(document).pngFix(); 

	// Sutter for "Show Ingredients box on product page"
	$(".msg_body").hide();
	$("#msg_head").click(function(){
		$(this).next(".msg_body").slideToggle('fast');
		$(this).toggleClass("active");
	});
});