$(function() {

	var timer;

	var holder;


	$('#bt1').bind('click', function() {

		if (holder) {

			clearTimeout(holder);	

		}

		if (timer) {

			clearTimeout(timer);	

		}

		$(this).css('background', 'url(images/home_dest_mrinho.png) no-repeat');

		$('#bt2').css('background', 'url(images/home_casa_da_feijoada_desativado.png) no-repeat');
		$('#bt3').css('background', 'url(images/home_brasileirinho_desativado.png) no-repeat');
		$('#bt4').css('background', 'url(images/home_brasileirinho2_desativado.png) no-repeat');												

		holder = setTimeout(function() {

			

			$('#res1').show('slow');
			$('#res2').hide('slow');
			$('#res3').hide('slow');
			$('#res4').hide('slow');


			timer = setTimeout(function() {

				$('#bt2').triggerHandler('click');

			}, 8000);

		}, 200);	

	});

	
	$('#bt2').bind('click', function() {

		if (holder) {

			clearTimeout(holder);	

		}

		if (timer) {

			clearTimeout(timer);	

		}

		$(this).css('background', 'url(images/home_dest_casa_da_feijoada.png) no-repeat');  

		$('#bt1').css('background', 'url(images/home_mrinho_desativado.png) no-repeat');
		$('#bt3').css('background', 'url(images/home_brasileirinho_desativado.png) no-repeat');
		$('#bt4').css('background', 'url(images/home_brasileirinho2_desativado.png) no-repeat');												


		holder = setTimeout(function() {

			

			$('#res1').hide('slow');
			$('#res2').show('slow');
			$('#res3').hide('slow');
			$('#res4').hide('slow');


			timer = setTimeout(function() {

				$('#bt3').triggerHandler('click');

			}, 8000);

		}, 200);	

	});
	
	$('#bt3').bind('click', function() {

		if (holder) {

			clearTimeout(holder);	

		}

		if (timer) {

			clearTimeout(timer);	

		}

		$(this).css('background', 'url(images/home_dest_brasileirinho.png) no-repeat');  

		$('#bt1').css('background', 'url(images/home_mrinho_desativado.png) no-repeat');
		$('#bt2').css('background', 'url(images/home_casa_da_feijoada_desativado.png) no-repeat');
		$('#bt4').css('background', 'url(images/home_brasileirinho2_desativado.png) no-repeat');												


		holder = setTimeout(function() {

			

			$('#res1').hide('slow');
			$('#res2').hide('slow');
			$('#res3').show('slow');
			$('#res4').hide('slow');



			timer = setTimeout(function() {

				$('#bt4').triggerHandler('click');

			}, 8000);

		}, 200);	

	});
	
	$('#bt4').bind('click', function() {

		if (holder) {

			clearTimeout(holder);	

		}

		if (timer) {

			clearTimeout(timer);	

		}

		$(this).css('background', 'url(images/home_dest_brasileirinho2.png) no-repeat');  

		$('#bt1').css('background', 'url(images/home_mrinho_desativado.png) no-repeat');
		$('#bt2').css('background', 'url(images/home_casa_da_feijoada_desativado.png) no-repeat');
		$('#bt3').css('background', 'url(images/home_brasileirinho_desativado.png) no-repeat');


		holder = setTimeout(function() {

			

			$('#res1').hide('slow');
			$('#res2').hide('slow');
			$('#res3').hide('slow');
			$('#res4').show('slow');


			timer = setTimeout(function() {

				$('#bt1').triggerHandler('click');

			}, 8000);

		}, 200);	

	});
	
	
	if (!holder) {

		$('#bt1').triggerHandler('click');

	}


});
