//Deal Message
var msg	=	"WAIT!!!!!! \n"+
			 "CLICK CANCEL to receive 30% OFF Your Book! \n"+
			 "Thats only $17.50 From Regularly $24.99!!! \n"+
			 "But this is a 1 time offer only, you wont get this next time!";

//Preload Deal
var img = new Image();
img.src = 'images/content/box5/bg2.jpg';


$(document).ready(function(){
	//Countdown
	var newYear = new Date(2012,11,21,1,0,0,0);
	$('.countdown').countdown({until: newYear, layout: '<span>{dn}</span>days, <span>{hn}</span>hrs, <span>{mn}</span>mins, <span>{sn}</span>seconds'}); 
	 
	if($.readCookie('2012enlightened')){
		var warn = false;
	}else{
		var warn = true;	
	}
	
	
	//Toggle Countdown
	$('#removeCountdown').toggle(function() { 
			$(this).text('Re-attach'); 
			$('.countdown').countdown('destroy'); 
		}, 
		function() { 
			$(this).text('Remove'); 
			$('.countdown').countdown({until: newYear}); 
		} 
	);
	
	$('form[name="paypal"] > input[type="image"]').click(function(){
		if(!$.readCookie('2012enlightened')){
			$.setCookie('2012enlightened','Deal Option',{duration: 365 });															  
		}
	});
	
	//Give Deal
	/*
	window.onbeforeunload = function(){
		if(warn){
			if(!$.readCookie('2012enlightened')){
				$.setCookie('2012enlightened','Deal Option',{duration: 365 });
			}
			$('.box5').css('background','url("'+img.src+'")');
			$('input[name="hosted_button_id"]').remove();
			$('form[name="paypal"]').append('<input type="hidden" value="6SJWMSRNF35ZG" name="hosted_button_id" />');
			return msg;
		}
	}
	*/
	$('.button1 > p > .button').hover(function(){
		$(this).attr('src','images/content/box5/buttons/ebook-hover.png');								   
	},function(){ 
		$(this).attr('src','images/content/box5/buttons/ebook.png');
	});
	$('.button2 > p > .button').hover(function(){
		$(this).attr('src','images/content/box5/buttons/book-hover.png');									   
	},function(){ 
		$(this).attr('src','images/content/box5/buttons/book.png');	
	});
	//Dont Warn On Form Submission
	$('form').submit(function(){ 
		warn = false; 
	});
	
});
