function showPromo(promonum, t) {
	//alert(promonum);
	for (c=0; c<=t; c++) {
		if (c==promonum) {
			$("#campaign"+ c).fadeIn("fast");
			 $("#rotchoice"+ c).attr("src", "/home/wp-content/themes/WP_VQ_Master/images/campaignbtns.png");
		} else {
			$("#campaign"+ c).fadeOut("fast");
			$("#rotchoice"+ c).attr("src", "/home/wp-content/themes/WP_VQ_Master/images/campaignbtn.png");
		}			
	}			
}

function chng_website(newsite)
{
window.location.href=newsite;
}

