$(document).ready(function(){
  // Ready Begin. 
   //initSearch();
   fixMenu();
  
  positionFooter($("#footer"));
  $(window).resize(function() {
   positionFooter($("#footer"));
  });
  
  $("form").each(function() {
      $(this).validate();
   });
  
  $(' [placeholder] ').defaultValue();
  // Ready End.
  
});


