//

(function($){

	$(document).ready(function() {

		var interval;

		$("#pr-area").css({

			"visibility": "visible",

			"height": "auto"

		});

		$("ul.pr-img")

			.roundabout({

				duration: "2000",

				easing: "easeOutExpo",

				btnNext: "#go_01",

				btnPrev: "#go_02"

			})

			.hover(

				function() {

					// oh no, it"s the cops!

					clearInterval(interval);

				},

				function() {

					// false alarm: PARTY!

					interval = startAutoPlay();

				}

			)

			.focus(function(e) {

				//alert("focus:" + this);

			})

			//.click(function(e) {

			//	var linkURL = $(".roundabout-in-focus span").html();

			//	document.location = linkURL;

			//});

		

		// let"s get this party started

		interval = startAutoPlay();

	});

	

	function startAutoPlay() {

		return setInterval(function() {

			$("ul.pr-img").roundabout_animateToNextChild();

		}, 3000);

	}

})(jQuery);
