$(document).ready(function()
{
  $(".minimizeblock").toggle(function()
  {
    $(this).next().next(".hudcontent").slideUp(200);
    $(this).css({ backgroundPosition:"top"});
  }, function() {
  	$(this).next().next(".hudcontent").slideDown(300);
  	$(this).css({ backgroundPosition:"bottom"});
  });
  
  $(".designprocessmiddle").hide();
  $(".step .designprocessexpand").toggle(function()
  {
    $(this).next().next(".designprocessmiddle").slideDown(300);
    $(this).css({ backgroundPosition:"bottom"});
  }, function() {
  	$(this).next().next(".designprocessmiddle").slideUp(300);
  	$(this).css({ backgroundPosition:"top"});
  });
});