jQuery(document).ready(function($) {
	var cookie = $.cookie('downloaded');
	if(cookie == "yes"){
	}
	else{
		$('.title').addClass("thickbox");
		$('.title').click(function(){
			var resourcelink = $('.title').attr('href');
			$(this).attr('href', 'http://www.thegenerouslife.net/register?modal=true&height=400&resource=' + resourcelink);	
			var options = { path: '/', expires: 20 };
			$.cookie('downloaded','yes',options);
		});
	}
	var redirectfinal = $('#redirect').val();
	if(redirectfinal != ''){
		top.location = redirectfinal;
	}
});