$(document).ready(function() {
  $('form .textinput').focus(function() {
    $(this).addClass('current');
  });

  $('form .textinput').blur(function() {
    $(this).removeClass('current');
  });


	$('ul.listItems li').hover(
		function() {
			$(this).addClass('current');
		}, 
		function() {
			$(this).removeClass('current');
		}).click(function() {
			sHref = $(this).find('a').attr('href');
			window.location.href = sHref;
		});


});
