// JavaScript Document


<!--

if (document.images)
{
 	badge = new Image(); 
  	right_margin = new Image(); 
	footer_1 = new Image(); 
	footer_2 = new Image(); 
	footer_3 = new Image(); 
	
	
	badge.src = imagePath + "badge_logo_BIOLOGY.jpg";
	right_margin.src = imagePath +"right_margin_BIOLOGY.jpg";
	footer_1.src = imagePath +"footer_1_BIOLOGY.jpg";
	footer_2.src = imagePath +"footer_2_BIOLOGY.jpg";
	footer_3.src = imagePath +"footer_3_BIOLOGY.jpg";
	
	
}
//-

function brand() {

	document["badge"].src = imagePath + "badge_logo_" + theBrandName + ".jpg";
	document["right_margin"].src = imagePath +"right_margin_" + theBrandName + ".jpg";
	document["footer_1"].src = imagePath +"footer_1_" + theBrandName + ".jpg";
	document["footer_2"].src = imagePath +"footer_2_" + theBrandName + ".jpg";
	document["footer_3"].src = imagePath +"footer_3_" + theBrandName + ".jpg";
	
}

function newBrand() {
theBrandName = picker.brand.options[document.picker.brand.selectedIndex].value;
brand();
}


//-->
