// JavaScript Document
$('document').ready(function(){
							 
	$("#dialog").dialog({
		autoOpen: false,				
		bgiframe: true,
		modal: true,
		buttons: {
			Ok: function() {
				$(this).dialog('close');
			}
		}
	});
//enable links to update basket ajax style
	$('.addvoucher').each(function(){
		$(this).bind('click',function(){						   
			voucherid = $(this).attr('id');
			$.ajax({
					type: "GET", 
					url: "listings.php", 
					data: "action=addtobasket&item="+voucherid, 
					success: function(msg){
						$('#numdownloads').html(msg);
						$('#'+voucherid).parent().html('<span class="addvoucheradded">Voucher added to my downloads</span>');
					}
			});
			return false;
		});
	});
							 
});
