document.write('<style>');
document.write('#pageflip {position: absolute;right: 0; top: 0;float: right;}');
document.write('#pageflip img {width: 80px; height: 82px;z-index: 99;position: absolute;right: 0; top: 0;-ms-interpolation-mode: bicubic;}');
document.write('#pageflip .msg_block {width: 80px; height: 80px;overflow: hidden;position: absolute;right: 0; top: 0;z-index: 98;background: url(/splash/splash.jpg) no-repeat right top;}');
document.write('</style>');

$(document).ready(function(){
	$("body").append('<div id="pageflip"><a href="http://www.starwoodmeeting.com/StarGroupsWeb/booking/reservation?id=1006246916&key=C0557" target="_blank"><img border=0 src="/splash/page_flip.png"><div class="msg_block"></div></a></div>');
	$("#pageflip").hover(function() {
		$("#pageflip img , .msg_block").stop()
			.animate({
				width: '307px', 
				height: '319px'
			}, 500); 
		} , function() {
		$("#pageflip img").stop() 
			.animate({
				width: '80px', 
				height: '82px'
			}, 220);
		$(".msg_block").stop() 
			.animate({
				width: '80px', 
				height: '80px'
			}, 200);
	});
});
