function changeImage(path)
{
	var actualImagePathStartIndex = path.indexOf("&image=") + 7;
	var actualImagePath = path.substring(actualImagePathStartIndex);
	
	var image_thumb_url = '/wp-content/image.php/'+actualImagePath;
	image_thumb_url += '?width=270&height=195&image=';
	image_thumb_url += actualImagePath;
	//actualImagePath = image_thumb_url;
	jQuery('#currentimage').attr('src', image_thumb_url);
	jQuery('#toenlarge').attr('href', actualImagePath);
}	

jQuery(document).ready(function()
{
	var actualImagePath = jQuery('#currentimage').attr('src');
	jQuery('#enlarge-image').attr('src', actualImagePath);
});


