$(document).ready(function() {
	//check for the cookie
	if ($.cookie('wallpapers') == null) {
		$('.wallpaperBox a').click(function() {
			alert('Please enter your email address to be able to download your desktop wallpaper.');
			$('.emailInput').focus();
			return false;
		});
	}
	else {
		$('.wallpaperBox a').click(function() {
			s=s_gi('baonthegreenmagazinecom');
			s.linkTrackVars = 'prop24';
			property = $(this).parent().children('h3').attr('title');
			s.prop24 = property;
			s.tl(this, 'd', s.prop24);
		});
	}
});

function setCookie() {
	alert('hello!');
	var date = new Date();
	date.setTime(date.getTime() + (60*60*24*120));
	$.cookie('wallpapers', '1', { path: '/', expires: date });
}