$().ready( function() {

	webmail();

	cultivaresHighlights();

	var a = 1;
	var total = 0;

	$("#produtos-menu").find('a').each( function(){
		total++;
	});

	if(a < total){
		$.timer(8000, function (timer) {
			
			if(a < total) a++;
			else a = 1;

			$('#produtos-menu a[href=#produtos-'+a+']').click();

			//timer.stop();

		});		
	}

});

function webmail(){
	$('input[name=imapuser]').focus(function() {
		if( 'Usuário' == $(this).val() ) $(this).val('');
	});
	$('input[name=imapuser]').blur(function () {
         if( '' == $(this).val() ) $(this).val('Usuário');
    });
	
	$('input[name=pass]').focus(function() {
		if( 'Senha' == $(this).val() ) {
			$(this).replaceWith('<input class="pass" id="senha" name="pass" type="password" value="" />');
			$('input[name=pass]').focus();
		}
	});
}

/////////////////////////////* Highlights News */////////////////////////////

function cultivaresHighlights() {
	$("#produtos").wslide({
		width: 300,
		height: 200,
		pos: 1,
		horiz: false,
		duration: 1000,
		fade: true,
		autolink: false
	});
}
