function changeMainImage(newImage) {
	
	var mainImage = document.getElementById("bigImage");
	
	
	mainImage.style.backgroundImage="url("+newImage+")";
	
	//////////////mainImage.style.backgroundImage = 'resizer.php?imgfile='+newImage+'&max_width='+width+'&max_height='+height;
}