
function initPhotoPost() {
	
	jQuery(".post .img_next, .post .img_prev").hover(
		function(){jQuery('.back', this).stop(true).fadeTo(200, 1);}
		, function(){jQuery('.back', this).stop(true).fadeTo(200, 0);}
	);
	//jQuery(".post a .back").css('display', 'block').fadeTo(0, 0);
	
	jQuery(".post a .back").delay(1000).fadeTo(500, 0);
	
}


function gotoNextImage(id) {
	var img = jQuery('#image_'+id);
	if (img.length == 0) return true;
	
	//alert(img.outerHeight() + " / " + img.offset().top + " / " + jQuery('html').innerHeight() + " / " + window.innerHeight);
	
	/*
	if (console) {
		console.log(img.outerHeight(), img.offset().top);
	}
	*/
	var innerHeight = window.innerHeight;
	if (!innerHeight) innerHeight = jQuery('html').innerHeight();
	var y = img.offset().top - ((innerHeight - img.outerHeight())/2);
	
	jQuery(window).scrollTo({top : y}, 300, {axis:'y'});
	
	return false;
}