$(document).ready(function(){
	/*d = new Date();
	var hora = d.getHours();
	
	if(hora > 6 && hora < 12){
		$('body').attr('id','morning');
	}else if(hora > 11 && hora < 18){
		$('body').attr('id','afternoon');
	}else{
		$('body').attr('id','night');
	}*/
	
	$("#capa .montage").mbScrollable({
		width:680,
		elementsInPage:1,
		elementMargin:0,
		shadow:"none",
		height:"260",
		controls:"#capa .navs",
		slideTimer:600,
		autoscroll:true,
		scrollTimer:4000 
	});
	
	$('#cats-destaque li a, #capa .montage .scrollEl a').hover(
		function(){
			$(this).children('img').animate({opacity: 0.8},200);
		},
		function(){
			$(this).children('img').animate({opacity: 1},200);
		}
	);
	
	$('#categorias > li').hover(
		function(){
			$(this).children('ul').fadeIn('200');
		},
		function(){
			$(this).children('ul').hide();
		}
	);
	
	$('.wpcf7-file').attr({size:'19', value:'upload'});
});
