// Banner de patrocinio
$(document).ready(function() { 
	// Controlador do banner
	$('ul#bannersPatrocinio').innerfade({
		speed: 1000,
		timeout: 3000,
		type: 'sequence',
		containerheight: '170px'
	});
	// Banner start
	$('.banner').loopedSlider({
		autoStart: 7000,
		containerClick: false,
		fadespeed: 600
	});
});

function trackBannerView(area, cliente, campanha) {
	if(typeof(_gaq) != "undefined")
		_gaq.push(['_trackPageview', '/Banners/' + area + '/' + cliente + '/' + campanha + '/View']);
}

function trackBannerClick(area, cliente, campanha) {
	if(typeof(_gaq) != "undefined")
		_gaq.push(['_trackPageview', '/Banners/' + area + '/' + cliente + '/' + campanha + '/Click']);
}