/*
 *  File: pz.js
 *  Author: Thomas Seitz   
 *  Description: Some helper-functions for mostly usage with the jQuery Library 
 */  
  
  

jQuery.noConflict(); 


jQuery(function() {
  jQuery('#uploadForm').submit(function(data) {
    document.getElementById("loader").style.display = "block";
  });
})
