$(document).ready(function(){
	$.ImageBox.init({
		border : 0,
		loaderSRC : "../js/ajax-loader.gif",
		closeHTML : '<img src="../vente-location-saint-brieuc/fermer-box.gif" style="border:0px;margin-right:4px;" />',
		textImage : '<span style="margin-left:4px;">Photos</span>',
		textImageFrom : "sur",
		fadeDuration : 1
	});
	/*$(".zoom-hover").ToolTip({
		className : "inputsTooltip",
		delay : 1,
		position : "right"
	});*/
	$(".zoom-hover").hover(
		function(){
			$(".zoom-hover-zoom").hide("fast");
			var offset	= $("#accueil").offset();
			var top		= offset.top;
			var left	= offset.left;
			top			= top + $("#accueil").height();
			$("#"+$(this).attr("title")).css("top",top);
			$("#"+$(this).attr("title")).css("left",left);
			$("#"+$(this).attr("title")).show();
		},
		function(){
			$("#"+$(this).attr("title")).hide();
		}
	);
});