/*
 * Market Hardware: Navigation dropdowns
 */
(function($){$(document).ready(function(){$('#nav li').each(function(){$(this).bind('mouseenter',function(){$(this).addClass('hover');}).bind('mouseleave',function(){$(this).removeClass('hover');});});});})(jQuery);
