$(document).ready(function() {
	// Hero
	$('#hero').before('<a href="#" id="hero-right">&raquo;</a><a href="#" id="hero-left">&laquo;</a>')
	.cycle({ 
		fx: 'fade',
		timeout: 8000,
		speed: 1000,
		next: '#hero-right',
		prev: '#hero-left',
		pause: 1
	});
});

$(window).load(function(){
	//reveal the poll tab if #poll is in the url
	var pageUrl = window.location.href;
	console.log(pageUrl);
	if(pageUrl.indexOf("#poll") > -1){$('[href="#poll"]').click();}
})