$(document).ready(function() {

  /* Accessible input values
   ---------------- */
  $("input.propagate").each(function(){
      var $this = $(this);
      var val = $('label[for=' + $this.attr('id') + ']').html();
      if($this.val() == '') $this.val(val);
      $this.focus(function(){
          if($this.val() == val) $this.val('');
      }).blur(function(){
          if($this.val() == '') $this.val(val);
      });
  });
  

  /* Navigation
   ---------------- */

  // target IE6 and below
  if ($.browser.msie && $.browser.version <= 7 ) {


	// Dropdowns & hover states for IE
    $('#navigation li').hover(function() {
        $(this).addClass('hover').find('.dropdown').css('left', '0');
    }, function() {
        $(this).removeClass('hover').find('.dropdown').css('left', '-999em');
    });
  
  };

});

