(function() {
  jQuery(function() {
    $('#helmetcopy').hide();
    return $('div.helmet').hover(function() {
      $(this).css('z-index', '1');
      return $(this).find('.helmetcopy').slideDown(function(){ $(this).css('display', 'inline-block') });
    }, function() {
      $(this).css('z-index', '0');
      return $(this).find('.helmetcopy').slideUp();
    });

    $(function() {
       var zIndexNumber = 1000;
       // Put your target element(s) in the selector below!
       $("div").each(function() {
	       $(this).css('zIndex', zIndexNumber);
	       zIndexNumber -= 10;
       });
	});
  });
}).call(this);

