jQuery(document).ready(efeitos);

// CHAMA AS DEMAIS FUNCOES
function efeitos(){
	expand_img();
	efeito_img()
}

//SLIDES IMAGES
function efeito_img(){
	jQuery('.efeito1').innerfade({ speed: 'slow', timeout: 2000, type: 'random_start', containerheight: '200px' }); 
	jQuery('.efeito2').innerfade({ speed: 'slow', timeout: 4000, type: 'sequence', containerheight: '200px' }); 
	jQuery('.efeito3').innerfade({ speed: 'slow', timeout: 2000, type: 'sequence', containerheight: '230px' }); 
	jQuery('.efeito4').innerfade({ speed: 'slow', timeout: 4000, type: 'sequence', containerheight: '310px' }); 
	jQuery('.efeito5').innerfade({ speed: 'slow', timeout: 2000, type: 'sequence', containerheight: '200px' })
}

//EFEITO AMPLIAR IMG
function expand_img(){
	jQuery(".gallery a").each(function(event){
		this.onclick = function(){
			return hs.expand(this, {align:'center'});
		};
		event.preventDefault;
	})
}