jQuery(function(){
			
			
	// scrollable box
	$('.BoxSelect div').hide();
	
	$(".BoxSelect > a").click(function(e){
		e.preventDefault();
		if($(this).next().css("display")!="none"){
		  $(this).next().slideToggle('slow');
		
		}else{
		  $('.BoxSelect div').slideUp('slow');
		  $(this).next().slideToggle('slow');
		}
	
		return false;
	});
	
	$('body').click(function(){
	$('.BoxSelect div').slideUp('slow');
	
	});
	
		if ( document.getElementById('superbox') ) {
	 $.superbox.settings = {
			
			overlayOpacity: .8, // Background opaqueness
			loadTxt: "Carregando...", // Loading text
			closeTxt: "Fechar", // "Close" button text
			prevTxt: "Anterior", // "Previous" button text
			nextTxt: "Proximo" // "Next" button text

	  };
	  $.superbox();
	  
	}		

//---------------------------------------------------


//function(){ 

	//$('#news').innerfade({ animationtype: 'slide', speed: 750, timeout: 2000, type: 'random', containerheight: '1em' }); 
	$('#portfolio').innerfade({ speed: 'slow', timeout: 4000, type: 'sequence', containerheight: '220px' }); 
	//$('.fade').innerfade({ speed: 'slow', timeout: 1000, type: 'sequence', containerheight: '1.5em' }); 
	
	//} 

//----------------------------------------------------


});

