function changeImage( object, newImage) {
	//alert (object.style.background);
	//object.style.background = "#000000";
	object.style.background = "url(" + newImage + ")";
    	//alert (object.style.background);
}

