/*
	   _____ ______
	  / ___// ____/
	  \__ \/ /_
	 ___/ / __/ (c) 2011
	/____/_/ sasaforic.com

*/

$(document).ready(function() {
	$('.links a').click(function() {
		$('.links a').removeClass('active');
		$(this).addClass('active');

		// hide current slide and show appropriate
		$('.rotation img.active').removeClass('active').fadeOut(500);
		$('.rotation img').eq($('.links a').index(this))
			.addClass('active')
			.fadeIn(500);

		return false;
	});

	setInterval(function() {
		$curr = $('.rotation img.active');
		$curr.removeClass('active').fadeOut(500);
		$next = $curr.next('img');
		if ($next.length  == 0) {
		    $next = $('.rotation img:first');
		}
		$next.addClass('active').fadeIn(500);

		$('.links a').removeClass('active')
			.eq($('.rotation img').index($next))
			.addClass('active');
		}, 5000);
});
