$(document).ready(function() {

// For conferences, all sections are loaded on the page and the all but the first are hidden
	$('h1 span').hide();
	if(window.location.hash) {
		$('.section').hide();
		var theSection = window.location.hash.substring(1);
		$('.'+theSection).show();
	} else {
		$('.section').not(':first').hide();
	}

	
	$('#conf-nav a').click(function(){
		$('.section').hide();
		$('h1 span').hide();
		var section = $(this).attr('href').substring(1);
		$('.'+section).show();
	});	
	
// Clear search on focus
	$('#email').focus(function(){
		if ($(this).val() == 'email' ) {
			$(this).attr('value','');
		}
	});

// Put back search if blank on blur
	$('#email').blur(function(){
		if ($(this).val() == '' ) {
			$(this).attr('value', 'email');
		}
	});

	$('.homePage #hero').nivoSlider({
		effect: 'boxRainGrow',
		animSpeed: 700, // Slide transition speed
		pauseTime: 5000, // How long each slide will show
		startSlide: 0 // Set starting Slide (0 index)
	});

});   
