			$(document).ready(function() { 

       			$('input[name="return"]').attr('value', 'success');
    		
	    		jQuery.validator.addMethod("phoneIE", function(phone_number, element) {
					phone_number = phone_number.replace(/\s+/g, ""); 
					return this.optional(element) || phone_number.length > 9 &&
						phone_number.match(/^(\+353)?\s?-?\(?[0-9]{1,4}\)?\s?-?[0-9]{5,8}$/);
					}, "Please specify a valid phone number");
    		
				$('#getintouch').ajaxForm(  
            			{target:"#hiddenDIV",
            			beforeSubmit:function(){
							return $('#getintouch').valid();
						},
    	           		success:function(rtn){ 
							$(".msg").html("Thank you for contacting us. We will be in touch shortly.");
   							$("#getintouch").css({'display' : 'none'});
	        	    	},
	            	} 			
	            ); 
	            
	       	            				            
    	    });
