$(document).ready(function(){
	$('.vejaMais').toggle(function(){
		$('.colapse').hide();
		$(this).next('.colapse').animate({'opacity' : 'show'});
		$('.colunaEsq').jScrollPane({scrollbarWidth: 15});
		$('.colunaEsqTrabalhe').jScrollPane({scrollbarWidth: 15});
	}, function(){
		$(this).next('.colapse').animate({'opacity' : 'hide'});
		$('.colunaEsq').jScrollPane({scrollbarWidth: 15});
		$('.colunaEsqTrabalhe').jScrollPane({scrollbarWidth: 15});
	})
	
	$('.vejaMais-en').toggle(function(){
		$('.colapse').hide();
		$(this).next('.colapse').animate({'opacity' : 'show'});
		$('.colunaEsq').jScrollPane({scrollbarWidth: 15});
		$('.colunaEsqTrabalhe').jScrollPane({scrollbarWidth: 15});
	}, function(){
		$(this).next('.colapse').animate({'opacity' : 'hide'});
		$('.colunaEsq').jScrollPane({scrollbarWidth: 15});
		$('.colunaEsqTrabalhe').jScrollPane({scrollbarWidth: 15});
	})
})

function abreModal(w, h2, img){
	$.blockUI({ message: $('#modal'), css: {border: 'none', width: w+'px', top: '30px', marginLeft: '-'+(w /2)+'px', left: '50%' } });
	$('#titModal').html(h2);
	$('#imgModal').attr('src', img);
}

function fecharModal(){
	$.unblockUI();
}
