var panoramaImages	=	[];

$(document).ready(function (e) {
	
	$('.smartie-panoramaview').overlay({
		mask:	'#000',
		effect:	'apple',
		onLoad: function (e) {
			var id	=	this.getTrigger().attr('id').split('-')[1];
			
						
			$('#panoramafullview-' + id).css('background-position', '0px 0px');
			_PanoramaViewSlideRight(id);
		}
	});	
});

function _PanoramaViewSlideRight ( id ) {
	
	var width	=	panoramaImages[id].width;
	
	$('#panoramafullview-' + id).animate({
		backgroundPosition: '-' + (width - 640) + 'px 0px'
	}, 40000, 'linear', function (e) {
		_PanoramaViewSlideLeft(id);
	});
}

function _PanoramaViewSlideLeft ( id ) {
		
	$('#panoramafullview-' + id).animate({
		backgroundPosition: '0px 0px'
	}, 40000, 'linear', function (e) {
		_PanoramaViewSlideRight(id);
	});
}
