			$(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");
    		
				$('#buyandsell').ajaxForm(  
            			{target:"#hiddenDIV",
            			beforeSubmit:function(){
							return $('#buyandsell').valid();
						},
    	           		success:function(rtn){ 
							$(".msg").html('Thank you for posting your ad on <a href="http://www.eazycork.com">EazyDublin</a>. We will be in touch shortly.');
   							$("#buyandsell").css({'display' : 'none'});
	        	    	},
	            	} 			
	            ); 
	            
	       	            				            
    	    });
