var image_name_old = 'gracia';
var big_img_width = 668;
var big_img_height = 588;
var prod_path = '/assets/images/production/show/';

function setImage(image_name) {

//	alert('image_name=' + image_name);
//	fid = '000000' + id;
//	fid = fid.substring(fid.length - 6);
//	subdir = fid.substring(0, 3) + '/';
	document.getElementById('front_prod_image').style.backgroundImage = 'url(' + prod_path + image_name + '.jpg' + ')';
	document.getElementById(image_name).style.borderColor = '#f90';
	
//	alert('image_name_old=' + image_name_old);
	document.getElementById(image_name_old).style.borderColor = '#acf';
	image_name_old = image_name;
}


