// use head.js to load our javascript files
head.js( '/assets/js/jquery-1.6.1.min.js' , '/assets/colorbox/jquery.colorbox-min.js');

// js has loaded and dom is scriptable
head(function(){

	$("a[rel='gallery']").colorbox({
		maxHeight:"95%"
	});

	var default_sponsor_text = 'Check out some of our sponsors.';
	update_sponsor_name( default_sponsor_text );

	$('.sponsor').hover(
		function(){
			update_sponsor_name( $(this).attr('alt') );
		},
		function(){
			update_sponsor_name( default_sponsor_text );
		}
	);

});

function update_sponsor_name( txt ) {
	$('#sponsor-name').html( txt );
}
