var now = new Date();
		if(now.getHours() < 10 || now.getHours() > 23){
			$( function(){
				$('#burn_whoson').html("Off Air");
				$('div.onAirShow a').hide();
				$('div#onair img').css("visibility", "hidden");
				$(".offairdesc").show();
			});
		}else{
			google.load("gdata", "2.x");
			function init() {
				// init the Google data JS client library with an error handler
				google.gdata.client.init(function(){ alert('error'); } );
				var service = new 
					google.gdata.calendar.CalendarService('gdata-js-client-samples-simple');
				var query = new google.gdata.calendar.CalendarEventQuery("http://www.google.com/calendar/feeds/burnfm.com_nc393596c1k2fhuqlg28jqjtko%40group.calendar.google.com/public/basic");
				query.setOrderBy('starttime');
				query.setSortOrder('ascending');
				query.setFutureEvents(true);
				query.setSingleEvents(true);
				query.setMaxResults(1);
				service.getEventsFeed(query, function(feedRoot){
					document.getElementById('burn_whoson').innerHTML = feedRoot.feed.getEntries()[0].title.getText();
				}, function(){
					$('#burn_whoson').html("On Air");
				});
			}
			google.setOnLoadCallback(init);
		}
		$( function(){
			$("#nav a").hover( function(){
				$(this).css("background-position", "0px -30px");
			}, function(){
				$(this).css("background-position", "top left");
			});
		});