function SwapImg(dropdown,picid){
	document.getElementById(picid).src=dropdown[dropdown.selectedIndex].title;
}

function SwapImg2(dropdown,id){
	document.getElementById("pic" + id).src=dropdown[dropdown.selectedIndex].title;
	switch(dropdown[dropdown.selectedIndex].className){
		case "backorder":
			document.getElementById("buttonholder" + id).innerHTML = '<span style="font:bold 20px arial;color:red;">Out of Stock</span>';
			break;
		default:	document.getElementById("buttonholder" + id).innerHTML = '<input type=image  src="http://www.tedshreds.com/media/ADC_uploaded_button.jpg" alt="ADC_uploaded_button.jpg" width="106" height="34" border="0" valign="bottom"  name="Add to Cart">';
	}
}
