function loadText(txt, im, no) {
	document.getElementById('thumbText').innerHTML = txt;
	document.getElementById('mainImage').src = "images/"+im;
	document.getElementById('thumb1').style.borderColor = "#b2c1d6";
	document.getElementById('thumb2').style.borderColor = "#b2c1d6";
	document.getElementById('thumb3').style.borderColor = "#b2c1d6";
	document.getElementById('thumb4').style.borderColor = "#b2c1d6";
	document.getElementById('thumb5').style.borderColor = "#b2c1d6";
	document.getElementById('thumb6').style.borderColor = "#b2c1d6";
	document.getElementById('thumb7').style.borderColor = "#b2c1d6";
	document.getElementById('thumb8').style.borderColor = "#b2c1d6";
	document.getElementById('thumb9').style.borderColor = "#b2c1d6";
	document.getElementById('thumb'+no).style.borderColor = "#003366";
}

function loadImage(im, no) { document.getElementById('mainImage').src = "images/"+im; }
function changeImage(id, im, txt, sts) {
	document.getElementById(id).src = "images/" + im;
	document.getElementById(txt).style.display = sts;
}

function to2DecWithComma(num) {
	num="" + Math.floor(num*100.0 + 0.5)/100.0;
	var i=num.indexOf(".");
	if ( i<0 ) num+=".00";
	else {
		num=num.substring(0,i) + "." + num.substring(i + 1);
		var nDec=(num.length - i) - 1;
		if ( nDec==0 ) num+="00";
		else if ( nDec==1 ) num+="0";
		else if ( nDec>2 ) num=num.substring(0,i + 3);
	}
	return num;
}

function setprices() {
	var price = new Array();
	price['combselect_one'] = 770;
	price['brochureselect_one'] = 69;
	price['brochureselect_two'] = 94;
	price['brochureselect_three'] = 97;
	price['bannerselect_one'] = 69;
	price['bannerselect_two'] = 89;
	price['bannerselect_three'] = 155;
	price['bannerselect_four'] = 180;
	price['bannerselect_five'] = 207;
	price['popupselect_one'] = 654;
	price['popupselect_two'] = 630;
	price['popupselect_three'] = 791;
	price['popupselect_four'] = 741;
	price['popupselect_five'] = 920;
	price['popupselect_six'] = 859;
	price['popupselect_seven'] = 1106;
	price['popupselect_eight'] = 1038;

	var items = ['popupselect_one', 'popupselect_two', 'popupselect_three', 'popupselect_four', 'popupselect_five', 'popupselect_six', 'popupselect_seven', 'popupselect_eight', 'brochureselect_one', 'brochureselect_two', 'brochureselect_three', 'combselect_one', 'bannerselect_one', 'bannerselect_two', 'bannerselect_three', 'bannerselect_four', 'bannerselect_five'];
	var running = 0;
	for(var i in items) {
		running = running + (price[items[i]] * document.getElementById(items[i]).value);
	}
	
	document.getElementById('total_price').innerHTML = to2DecWithComma((running*1.175));
}
