$(document).ready(function() {
	//carousel
	$('div.carousel').carousel({
		loop: true,
		autoSlide: true,
        autoSlideInterval: 7000,
		animSpeed: "slow"
	});
	
	//menu r�pido
	$('ul#speedMenu ul').hide();
	$('ul#speedMenu ul').parent().children('a').append('<span>+</span>');
	$('ul#speedMenu li a').click(function() {
		var checkElement = $(this).next();
		if(checkElement.is('ul')) {
			checkElement.parent().children('a').children('span').html('+');
			if(checkElement.is(':visible')) {
				$('ul#speedMenu ul:visible').slideUp('normal');
				return false;
			}
			if(!checkElement.is(':visible')) {
				$('ul#speedMenu li a span').html('+');
				checkElement.parent().children('a').children('span').html('-');
				$('ul#speedMenu ul:visible').slideUp('normal');
				checkElement.slideDown('normal');
				return false;
			}
		}
	});
	
	$('div.videos object').hide();
	$('div.videos > div a').click(function() {
		$(this).parent().parent().children('object').toggle();
	});
	
	$('div.tutoriais div.tutorial').hide();
	$('div.tutoriais  h3  a').click(function() {
		$(this).parent().parent().children('div.tutorial').toggle();
	});

	// validação de formulario
	$('form#contato').validate();

});

