$(document).ready(function() {
	$('#money_back').click(function() {
		show_ret_pol();
	});

	$('#ret_promo .close_btn').click(function() {
		hide_ret_pol();
	});
	
	$('#ret_promo .close_btn').hover(
		function() {
			this.src = '/images/red_cross.gif';
		},
		function() {
			this.src = '/images/gray_cross.gif';
		}
	);
})

function show_ret_pol() {
	$('#container').block({
		message: $('#ret_promo'),
		css: {
			top: '240px',
			width: '630px',
			left: '420px',
			cursor: 'default',
			border: '2px solid #ADA389',
			background: '#F6F4E7'
		},
		overlayCSS: {
			cursor: 'default',
			backgroundColor: 'white'
		}
	});
	
	var y = $(window).height() / 2.0 - $('.blockMsg').outerHeight() / 2 + $(window).scrollTop();
	if (y < 0)
		y = 25;
	$('.blockMsg').css('top', y);
}

function hide_ret_pol() {
	$('#container').unblock();
}