$(document).ready(function(){
    $('.SlideTwitter').cycle({
        next:   '.SlideTwitterNext',
        timeout:  6000
    });
    $('.Slide').cycle({
        timeout:  6000,
        pager:  '#pager'
    });
    $('.Mini1').cycle({
        fx:     'fade',
        speed:  'fast',
        prev:   '.Mini1Left',
        next:   '.Mini1Right',
        timeout:  0
    });
    $('.Mini2').cycle({
        fx:     'fade',
        speed:  'fast',
        prev:   '.Mini2Left',
        next:   '.Mini2Right',
        timeout:  0
    });
    $('.Tel').mask('(99) 9999-9999');

    $('.Apagar').click(function(){
        if(this.value == this.defaultValue){
            this.value = '';
        }
    });
    $('.Apagar').blur(function(){
        if (this.value == ''){
            this.value = this.defaultValue;
        }
    });
	$("a.galery").fancybox({
				'overlayShow'	: false,
				'transitionIn'	: 'elastic',
				'transitionOut'	: 'elastic'
	});


});



function abrir(URL) {

var width = 600;
var height = 600;

var left = 99;
var top = 99;

window.open(URL,'intro', 'width='+width+', height='+height+', top='+top+', left='+left+', scrollbars=yes, status=no, toolbar=no, location=no, directories=no, menubar=no, resizable=no, fullscreen=no');

}




