// $Id: script.js,v 1.1 2009/02/28 23:33:58 jwolf Exp $

Drupal.behaviors.tntBehavior = function (context) {
  // IE6 & less-specific functions
  // Add hover class to primary menu li elements on hover
  if ($.browser.msie && ($.browser.version < 7)) {
		$('.menu li').hover(function() {
      $(this).addClass('hover');
      }, function() {
        $(this).removeClass('hover');
   	 });
	}
	 $('#search-box .form-submit').val('');
};
