/*
 * Receipt Form Javascript
 *
 * 2009 Christian Tapay
 *
 * Date: 2009-06-12
 * For Travelex Inc use.
 */
														
	$(document).ready(function(){
		$("table#REQUEST_CUSTOMER_RECEIPT_CONTAINER").hide();
		
		$("a#fill-form-link").click(function(){
			$("table#REQUEST_CUSTOMER_RECEIPT_CONTAINER").show("slow");
			return false;
		});
	});