// JavaScript Document


jQuery.preloadImages = function() {
  for(var i=0; i<arguments.length; i++)   {
    jQuery("<img>").attr("src", arguments[i]);
  }
}

$(function(){
	
	function idadeEmpr() {
		hoje = new Date();
		fund = new Date("1978, jan, 1")  // Data da fundação
		anoH = hoje.getFullYear();
		anoF = fund.getFullYear();
		idade = parseInt((((((hoje - fund)/1000)/60)/60)/24)/365);
		return idade;
	}
	$("#cont_idade").html(idadeEmpr());
	
	if($("#ani_home").length>0) {
		var rand_no = Math.floor(4*Math.random());
		afoto=ender+"img/ani_home/foto"+rand_no+".jpg";
		$("#foto_ani").attr("src",afoto);
	}
	
	// fix for target="_blank"
	$("a[rel*='external']").click(function(){
		window.open($(this).attr("href"), 'janela','scrollbars=yes,resizable=yes,width=850,height=600');
		return false;
	});
	
	if($(".tablesorter").length>0) {  // tablesorter
		$(".tablesorter")
			.tablesorter({widthFixed: true, widgets: ['zebra']})
			.tablesorterPager({container: $("#pager"), size: 10});
	}
	if($("#img_prod").length>0) {  // jqGallery
		$("#img_prod").gallery({interval: 5500,  height: '300px',  width: '300px'});
	}

});


