$(document).ready(function(){

  $("#image360").reel();

var options =
            {
                zoomWidth: 650,
                zoomHeight: 300,
				position: "bottom",
				title: false,
				xOffset: 0,
				yOffset: 10
            }
            $(".jqzoom").jqzoom(options);

    $('.slideshow').cycle({
		fx: 'fade', // choose your transition type, ex: fade, scrollUp, shuffle, etc...
		speed:	300,
		pause:	1
	});

    $('#s1').cycle({
		fx: 'fade', // choose your transition type, ex: fade, scrollUp, shuffle, etc...
		speed:	300,
		pause:	1,
		after: onAfter
	});

function onAfter() {
    $('#output').html('<a href="'+this.href+'">learn more</a>');
}

// Mick Dissable right click:
$(document).bind('contextmenu',function(e){ return false; });

});
	
