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

*/

$(document).ready(function() {

	// dropdown
	$('.dropdown').hover(function() {
		$(this).parent('li').find('.link').addClass('active');
			}, function() {
				$(this).parent('li').find('.link').removeClass('active');
			});

	// rotator
	$('#links a').click(function() {
		$('#links a').removeClass('active');
		$(this).addClass('active');

		$('#rotator .right img.active').removeClass('active').fadeOut(500);
		$('#rotator .right img').eq($('#links a').index(this))
			.addClass('active')
			.fadeIn(500);

		return false;
	});

	setInterval(function() {
		$curr = $('#rotator .right img.active');
		$curr.removeClass('active').fadeOut(500);
		$next = $curr.next('#rotator .right img');
		if ($next.length  == 0) {
			$next = $('#rotator .right img:first');
		}

		$next.addClass('active').fadeIn(500);

		$('#links a').removeClass('active')
			.eq($('#rotator .right img').index($next))
			.addClass('active');
		}, 8000);
});
