// SECTION PHOTOS

function ajaxPhotoAndCaption( sectionName, photoID ) {
	new Effect.Fade('product_photo_image', { duration: 0.2 });
  setTimeout("ajaxProductPhoto('"+sectionName+"', '"+photoID+"')", 500);
	setTimeout("new Effect.Appear('product_photo_image', { duration: 0.2})", 1500);
}

function ajaxProductPhoto( sectionName, photoID ) {
	var url    = 'photos.php';
	var target = 'product_photo_image';
	var myAjax = new Ajax.Updater(target, url, {method: 'get', parameters: 'section='+sectionName+'&photo='+photoID});
}
