$(document).ready( function() {
	return;
    $('div.js-voucher').show('slow');
    
    $('a.js-voucher-exit').live('click', function(elem) {
	elem.preventDefault();
	$('div.js-voucher').hide('slow', function() {
	    $(this).remove();
	});
    });
});
