var timer;	 

// when the DOM is ready...
$(document).ready(function () {
	
	//Cufon.replace('#bcol1');
	$.ifixpng('images/pixel.gif');
	$('#header h1, #banner li').ifixpng();
	
	
	$('.submenu').hover(function(){
		$(this).children('a').addClass('active');
		$(this).children('ul').show();
	},function(){
		$(this).children('a').removeClass('active');
		$(this).children('ul').hide();
	});
	$('.inactivar').click(function(){return false;});


});

function getAlerts() {
	clearTimeout(timer);
	$("#alertas").load('getalerts',function(){ $("ul#ticker").liScroll({travelocity: 0.07}); });
	timer = setTimeout('getAlerts()', 300000); // refresh every 5 min
}
