/**
 * @projectname     Muzeul National Al Carpatiolor Rasariteni
 * @version         0.0.1 2010.06.18
 * @copyright       Copyright (C) 2008 - 2010 All rights reserved.
 * @license         Comertial
 * @author          Székely Csaba / csaba@szekely.ro / http://www.csaba.szekely.ro
 * 
 * @desc            Script for feedback submision and display
 */


  jQuery(document).ready(function(){ 
 jQuery("#feedback_form").validate({});  
 jQuery("#feedback_name").focus(function() { 
 jQuery(this).select();
});
jQuery("#feedback_email").focus(function() { 
 jQuery(this).select();
});
jQuery("#feedback_text").focus(function() { 
 jQuery(this).select();
}); 
 jQuery(".feedback_submit_btn").click(function() { 
 if (jQuery("#feedback_form").valid()) { 
 form_message=jQuery("#feedback_form").serialize(); 
 Fc7db4f04('/modules/feedback/feedbackHandler.php?action=submitfeedback&'+form_message, '.feedback_form_container');
} 
 }); 
}); 
 
 function Fc7db4f04(ajax_link, container_div_id){ 
 var V42da6c96 = jQuery('#document_root').val(); 
 jQuery(container_div_id).html(jQuery('.ajax_small_loading_img_container').html()).show(); 
 jQuery.ajax({ 
 type: 'GET',
 url: V42da6c96 + ajax_link,
 dataType: 'xml', 
 success: function(php_response) { 
 var V7cc5e612 = jQuery(php_response).find('response value').text();  
 jQuery(container_div_id).hide(); 
 jQuery(container_div_id).html(V7cc5e612); 
 jQuery(container_div_id).slideDown('slow');
},  
 error: function(xhr, textStatus, errorThrown) {
 alert('An error occurred! ' + errorThrown + '\n ' + xhr ) ;
} 
 }); 
} 

