$(function() {
	// enquiry code setter
    var code = $('#code').html();
    $('#sale_code').val(code);
    // set form submit hover effect
    $('#input_submit').hover(
    	function(event){
    		$(event.target).css('backgroundPosition', '0px -32px');
    	},
    	function(event){
    		$(event.target).css('backgroundPosition', '0px 0px');
    	}
    );
    // prepare Options Object 
    var options = { 
    	dataType:   'json',
    	success : function(response){
    				if(response.result == 'OK')
    				{
    					$('#server_reply').html(response.note).show();
    					$('#input_submit').hide();
    				} 
    				else
    				{
    					$('#server_reply').html(response.note).show();
    				}
    			},
        clearForm: true
    	};
    $('#contact_form').submit(function(){
    	$(this).ajaxSubmit(options);
        return false; 
    });
});	
