/**
 * Earth Hour Script for Web Sites 2011
 *
 * by Adam Solymos (https://profiles.google.com/solymos.adam)
 * AND S&G 2011
 */

$(function(){
	var earthHourMsg = "We are taking part in...";
	var dt = new Date();
	// The two timestamp are 2011-03-26 20:30:00 and 2011-03-26 21:30:00
	if (dt.getTime() >= 1301171400000 && dt.getTime() <= 1301175000000 ) {
		$('body').append('<a style="display: block; position: absolute; top: 0px; left: 0px; z-index: 999; width: 100%; background: #222; filter:alpha(opacity=80); -moz-opacity: 0.8; -khtml-opacity: 0.8; opacity: 0.8; font-size: 0.9em; color: #ccc; text-decoration: none; text-align: center;" href="http://www.earthhour.org" target="_blank">' + earthHourMsg + '<br /><img src="http://www.earthhour.org/assets/img/tools/logos/EH_60_logo.jpg" width="100%" alt="Earth Hour - Logo" /></a>');
	}
});

