/* when image click move it over to be the big image */
function changeBigImageToThis(img)
{

	big = $('id_big_image').src;

	small = img.src;

	last  = small.lastIndexOf("/");
	newFileName =  small.substring((last+1));

	blast =  big.lastIndexOf("/");
	startPath = big.substring(0, (blast+1));

	//alert('big image src changing to'+(startPath+newFileName));
	$('id_big_image').src = startPath+newFileName;


	$('id_big_image_lightbox').href = '/1/i_data/pl/'+newFileName;

}