$(document).ready(function(){
   $('#decoprofilesform').hide(); // Hide even though it's already hidden
   $('.toggle').click(function() {
      $('#decoprofilesform').toggle(400); // First click should toggle to 'show' 	  
      return false;
   });

});

