window.addEvent('load', function(){
	star=new Element('DIV');
	star.setStyles({
		marginLeft:270,
		position:'absolute',
		left:'50%',
		top:5,
		opacity:0,
		marginTop:40,
		'background-image':'url(static/images/framework/star.png)',
		width:121,
		height:121,
		padding:47,
		cursor:'pointer'
	});
	star.id="special-offers-star";
	inner='<h2>'+offerVars.title+'</h2>'+offerVars.body;
	star.set('html', inner);
	star.addEvent('click', function(){
		window.location.href=offerVars.link;
	});
	star.injectBefore('header');
	new Fx.Morph(star, {duration:1000}).start({
		opacity:1,
		marginTop:0
	});
});