// JavaScript Document

// When the page is ready
$(document).ready(function(){
	//$('a[href^="http://"]').attr('target','_blank');
	$('.reqd').append(" <img src=/images/form_star.gif alt=*>");
	
	//bold occurences of "Parmalat Canada"
	
	$("p").each(function(){
	
		$(this).html($(this).html().replace(/Parmalat Canada/g, "<strong>Parmalat Canada</strong>"));
	});
	
	//italicize the word Biobest
	
	$("p").each(function(){

		
		$(this).html($(this).html().replace(/BioBest Maximmunité/g, "<em>BioBest Maximmunité</em>"));
		$(this).html($(this).html().replace(/BioBest Vitalité/g, "<em>BioBest Vitalité</em>"));
		$(this).html($(this).html().replace(/BioBest Smoothie/g, "<em>BioBest Smoothie</em>"));
		$(this).html($(this).html().replace(/BioBest Omega 3/g, "<em>BioBest Omega 3</em>"));
		$(this).html($(this).html().replace(/BioBest/g, "<em>BioBest</em>"));
});
	
	//nav current page on-state lit
	$(function(){
   		var path = location.pathname;
   		if ( path )
     		$('a.n_top[href="' + path + '"]').addClass('ncurrent');
 	});

	
	
});