function getHTTPObject()
{
	if (window.ActiveXObject) return new ActiveXObject("Microsoft.XMLHTTP");
	else if (window.XMLHttpRequest) return new XMLHttpRequest();
	else {
		alert("Your browser does not support AJAX.");
		return null;
	}
} 

$(document).ready(function() 
{
	
	$("#pageflip").hover(function() {
		$("#pageflip img , .msg_block").stop()
			.animate({
				width: '300px', 
				height: '310px'
			}, 500); 
		} , function() {
		$("#pageflip img").stop() 
			.animate({
				width: '75px', 
				height: '77px'
			}, 220);
		$(".msg_block").stop() 
			.animate({
				width: '75px', 
				height: '75px'
			}, 200);
	});
	
})

function showForm()
{
	$("#mothersday-special").fadeIn(700);
}
function closeForm()
{
	$("#mothersday-special").fadeOut(700);
}



