$(function(){
	function ajustaHeader() { 
		$(".completa-header").show()
		width = ($(window).width()-960)/2
		if(width > 0){ $(".completa-header").width(width) } else { $(".completa-header").hide() }
	}
	$(window).resize(function() { ajustaHeader() })
	setInterval (function(){
		ajustaHeader()
	},100)
})
