			$(document).ready(function() { 
				$('#send-payment').removeAttr('disabled');
				$("#iFrame").css({'display' : 'none'});

       			$('input[name="return"]').attr('value', 'success');
    		    		
				$('#payment').ajaxForm({
					target:"#hiddenDIV",
					beforeSubmit:function() {
						return $('#payment').valid();
					},
					success:function(rtn) { 
						//$(".msg").html("Thank you for contacting us. We will be in touch shortly.");
						$("#payment").css({'display' : 'none'});
						$('#iFrame').attr('src', 'http://www.eazydublin.com/realex');
						$('#iFrame').each(function() {
							$(this).attr({
								src: $(this).attr("src")
							});							
						});
						$.frameReady(function() {
							$("#realex_form").submit();
						}, "top.iFrame");							
					},
					complete:function(){
						$("#iFrame").show();
					},
				}); 
	            
	       	            				            
    	    });