var loc=document.location.href;
var baseUrl=window.location.host;
$(document).ready(function() {
//check to see if we are on an ordering page
if(loc.match(/(order)/ig)) {
//replace the step 1 and step 2 text
var s1=$("#step_one_phrase").html();
var s2=$("#step_two_phrase").html();
$("#step_one_phrase").html(s1.replace(/Step 1/,"Step 2"));
$("#step_two_phrase").html(s2.replace(/Step 2/,"Step 3"));
var htm="Step 1: Choose a flavor";
var sel="
Flavors:
";
$("#extra_step").html(htm+sel);
var ind=0;
//set the preselected flavor
if(loc.match(/(vanilla)/ig)) {
ind=1;
}
document.getElementById("flavor_select").selectedIndex=ind;
$("#flavor_select").change(
function() {
var e=this;
var val=e.options[e.selectedIndex].value;
//setNoCoupon();
var xtra='';
if(baseUrl.match(/(healthbuy.com)/ig)) {
xtra="/product/order";
}
document.location.href="http://"+baseUrl+xtra+val;
}
);
}
});