function switchImage(srcID,imgpath,image) {
	document.getElementById(srcID).src="/" + imgpath + "/" + image + ".jpg";
}

function DisplayAdditionalContent(contentName) {
	window.open('additionalcontent.asp?name=' + contentName,'winName','width=740,height=600,top ='+((screen.height-700)/2)+',left='+((screen.width-700)/2));
}

$(document).ready(function() {
	// ADD THE SELECTED HIGHLIGHT
	$(".varoption input:checked").parent(".varoption").addClass("varselected");
	
	$(".varoption input").click(function() {
		// MOVE THE SELECTED HIGHLIGHT
		$(".varoption").removeClass("varselected");
		$(this).parent(".varoption").addClass("varselected");
	});
	
});