$(function() {
	$(".whybuy_det").click(function() {
		if ($(this).next().hasClass('visi'))
			$(this).next().slideToggle().removeClass('visi');
		else {
			$('.visi').hide();
			$(this).next().slideToggle().addClass('visi');
		}		
	});
	
	$("#whybuy_butt").click(function() {
		show_why_buy();
	});
	
	$('#whybuy .close_btn').click(function() {
		hide_ret_pol();
		this.src = '/images/gray_cross.gif';
	});
	
	$('#whybuy .close_btn').hover(
		function() {
			this.src = '/images/red_cross.gif';
		},
		function() {
			this.src = '/images/gray_cross.gif';
		}
	);
});

function show_why_buy() {
	$('#container').block({
		message: $('#whybuy'),
		css: {
			top: '240px',
			width: '480px',
			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_why_buy() {
	$('#container').unblock();
}