var root_dir = "http://www.speclightsolutions.com/";
var place_holder = document.getElementById("Constant-Quickviews");
var image_path = root_dir + "images/Constant/";
var file_format = ".png";
function onHover(selected) {
	document.getElementById("swapthis").src = image_path + selected + file_format;
	//place_holder.innerHTML = "<img src='" + image_path + product_name + file_format + "'>";
}

function onBlur(selected) {
	document.getElementById("swapthis").src = image_path + selected + file_format;
	//place_holder.innerHTML = "<img src='" + image_path + "DefaultImage" + file_format + "'>"; 
}