$(document).ready(function() {
	$('#container').corner('12px');
	$('a[rel*=lightbox]').lightBox();
	$('span#cost').html($('#amount').val());
	if ($('#amount').val()==135)
		$('#item_name').val('Pieces of Hope Benefit Ticket (Patron)');
	else if ($('#amount').val()==450)
		$('#item_name').val('Pieces of Hope Benefit Ticket (Group of Six)');
	$('#amount').change(function() {
		$('span#cost').html($(this).val());
		if ($(this).val()==135)
			$('#item_name').val('Pieces of Hope Benefit Ticket (Patron)');
		else if ($(this).val()==450)
			$('#item_name').val('Pieces of Hope Benefit Ticket (Group of Six)');
		else
			$('#item_name').val('Pieces of Hope Benefit Ticket');
	});
});
