$('#gallery-nav ol li').hover(
	function(){ $(this).addClass('hov'); },
	function(){ $(this).removeClass('hov'); }
);
$('#gallery-slides ol').cycle({
	timeout: 5000,  // time before next slide appears (in ms)
    slideSpeed: 3000,   // time it takes to slide in each slide (in ms)
    tabSpeed: 600,      // time it takes to slide in each slide (in ms) when clicking through tabs	
	fx: 'scrollRight',
	auto: true, 
	after: function(){
		$('#gallery-slides ol li').css('background', 'transparent');
	}
									   
});

$('#gallery-nav ol li').mouseover(function(){
	$('#gallery-slides').fadeIn();
	$('#gallery-intro').fadeOut();
	$(this).parent().children().removeClass('activeslide');
	$(this).addClass('activeslide');
	var slidenum = Number($(this).attr('id').substr(6,1)) - 1;
	$('#gallery-slides ol').cycle(slidenum);
	
	setTimeout (function () { $('slide-'+slidenum).parent().children().removeClass('activeslide'); }, 3000);
	
});

$('#gallery-nav ol li').click(function(){
	$('#gallery-slides').fadeIn();
	$('#gallery-intro').fadeOut();
	$(this).parent().children().removeClass('activeslide');
	$(this).addClass('activeslide');
	var slidenum = Number($(this).attr('id').substr(6,1)) - 1;
	$('#gallery-slides ol').cycle(slidenum);
	
	setTimeout (function () { $('slide-'+slidenum).parent().children().removeClass('activeslide'); }, 3000);
	
});

$('#startslides').click(function(){
	$('#gallery-slides').fadeIn();
	$('#gallery-intro').fadeOut();
	$('#slide-1-nav').trigger('click');
});
