$(document).ready(
	function()
	{	
		
		$('#panoramica360') .after ('<img src="images/inicio/image360.jpg" id="panoramica360_2" width="2520" alt="Panorámica 360 grados de las instalaciones de Los Caserinos" />');
		$('#slider') .css ("display","block");
		$('#indicator') .css ("display","block");
		$('.tooltips') .css ("display","inline");
		
		$('#indicator').Draggable(
			{
				autoSize : true,
				onDragModifier : function(x,y)
				{
					var centerx = 884;
					var centery = 83;
					var angle = Math.atan((centery-y)/(centerx-x));
					var angle2 = angle;
					if((centerx-x)>=0)
						angle += Math.PI;
					if(centerx>=x)
						angle2 += Math.PI;
					angle2 += (Math.PI/2);
					radius = 70;
					$('#image360').css('left', parseInt(-2520*angle2/(Math.PI*2)) + 'px');
					return {
						x: radius * Math.cos(angle) + centerx, 
						y: radius * Math.sin(angle) + centery
					}
				}
			}
		);
		$('#panoramica a.tooltips').ToolTip(
			{
				className: 'inputsTooltip',
				position: 'bottom',
				delay: 0
			}
		);
	}
);