$(document).ready(function() {
	var interval;
	$('ul.gallery').roundabout({
		duration: 1200,
		minOpacity: 0.8
	}).hover(function() {
		clearInterval(interval);
	},function() {
		interval = startAutoPlay();
	});
				
	//start the timer
	interval = startAutoPlay();
	
	$("#Home,#AboutUs,#Membership,#Events,#DayShoot,#Ranges,#Gallery,#Merchandise,#ContactUs").mouseover(function(){
			if($(this).attr("class") == "btn_last")
			{
				$(this).removeClass("btn_last");
				$(this).addClass("btn_overLast");
			}
			else
			{
				$(this).removeClass("btn");
				$(this).addClass("btn_over");
			}
		}).mouseout(function(){
			if($(this).attr("rel") != "selected")
			{
				if($(this).attr("class") == "btn_overLast")
				{
					$(this).removeClass("btn_overLast");
					$(this).addClass("btn_last");
				}
				else
				{
					$(this).removeClass("btn_over");
					$(this).addClass("btn");
				}
			}
		});
		
		
});
			
function startAutoPlay() {
	return setInterval(function() {
		$('ul.gallery').roundabout_animateToNextChild();}, 5000);
}

