﻿function PagePeelInit() {

	// Fading arrow
	function fadingarrow() {$(".msg_arrow #arrowglow").fadeTo(400, 0.5).fadeTo(400, 1, function(){ fadingarrow(); });}
	fadingarrow();
	
	// Initialise on hover
	$("#pageflip").hover(function() {
		$('.msg_arrow').remove();
		$(".msg_tease").fadeTo(100,0);
		$("#pageflip img#pagepeel").stop()
			.animate({
				width: '510px', 
				height: '510px'
		}, 500, function(){
			$('#close-peel').fadeTo(200, 1);
		});
		$(".msg_block").stop()
			.animate({
				width: '510px', 
				height: '510px'
		}, 540);
	} , function() {
		shutpeel();
	});

	// Close when link is clicked
	$('#close-peel').click(function() {
		shutpeel();
		return false;
	});
}

// Close it function
function shutpeel() {
	$('#close-peel').hide();
	$("#pageflip img#pagepeel").stop() 
		.animate({
			width: '122px', 
			height: '122px'
	}, 240);
	$(".msg_block").stop() 
		.animate({
			width: '120px', 
			height: '120px'
		}, 200, function(){
			$(".msg_tease").fadeTo(50,1);
	});
}





