//mascara no form
function limparPadrao(campo) {
	if (campo.value == campo.defaultValue) {
			campo.value = "";
	}
}

function escreverPadrao(campo) {
	if (campo.value == "") {
			campo.value = campo.defaultValue;
	}
}

//xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx

//slide
$(function(){
	$(".slide ul").cycle({
		fx: 'fade',
		speed: 500,
		timeout: 5000,
		pager:  '#nav'
	});      
});

//xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx

//scroll nos servicos
$(function(){
	$("#content_serv").jCarouselLite({
		auto    : 1000,
		speed   : 1000,
		visible : 7,
		btnPrev : '.prev',
		btnNext : '.next'
	})
})

//xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx

/* target html */
$(document).ready(function() {
  $('a[rel = external]').attr('target', '_blank');
});

//xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx



//xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx

//COLORBOX
$(document).ready(function(){
	//Examples of how to assign the ColorBox event to elements
	$("a[rel='example1']").colorbox();
	$(".example7").colorbox({width:"60%", height:"90%", iframe:true});
});










