j = jQuery.noConflict();
j(document).ready(function($)
{
		
	// Mascaras
	$('#tel_res').mask('(99) 9999-9999');
	$('#tel_cel').mask('(99) 9999-9999');
	
		
	// Monta janelas DIALOG JQUERY UI
	$(".dialog").dialog({
		bgiframe: true,
		modal: true,
		buttons: {
			Ok: function() {
				$(this).dialog('close');
			}
		}
	});
	$(".dialog-info").dialog({
		bgiframe: true,
		modal: true,
		autoOpen: false,
		buttons: {
			Ok: function() {
				$(this).dialog('close');
			}
		}
	});
	
	// JCarrossel	
	if($('.carrossel ul li').size() > 0) {
        $(".carrossel").jCarouselLite({
			btnNext: ".next",
			btnPrev: ".prev",
			speed: 500,
			circular: true,
			scroll: 5,
			visible: 5
    	});
	}
	
	// Lightbox
	$('a.lightbox').lightBox({
		overlayBgColor: '#000',
		overlayOpacity: 0.6,
		imageLoading: 'imagens/lightbox/loading.gif',
		imageBtnClose: 'imagens/lightbox/close.gif',
		imageBtnPrev: 'imagens/lightbox/prev.gif',
		imageBtnNext: 'imagens/lightbox/next.gif',
		containerResizeSpeed: 350,
		txtImage: 'Imagem',
		txtOf: 'de'

    });
	
	
	
	
    $("a.iframe").fancybox({
		'width'			:	715,
    	'height'		: 	420,
		'transitionIn'	:	'elastic',
		'transitionOut'	:	'elastic',
		'speedIn'		:	600, 
		'speedOut'		:	200, 
		'overlayShow'	:	false
	});
	
	
	
});
