jQuery(document).ready(function($) {

if (window.location != "http://www.greenpeace.org/international/en/") {
return;
}
	
var $body = $('body'),
// The object you want in your topbar
$obj =	$('<div id="topbar"><div>RIGHT NOW: Activists are occupying a Shell icebreaker in Finland. <a href="http://www.greenpeace.org/savethearctic?utm_source=gpi&utm_medium=topbar&utm_campaign=savethearctic" class="donate">Click here!</a> <img src="http://www.greenpeace.org/international/Templates/Planet3/Styles/images/ico-close.gif" class="closex"></div></div>');
$body.attr('style', 'background-position: 0 35px !important').prepend($obj);

// The pretty yellow highlight effect
$("#topbar").effect("highlight", {}, 9000);

$(".closex").click(function () {
$body.attr('style', 'background-position: 0 0px !important');
$obj.hide();
});

});

