﻿$(document).ready(function() {
	
  //Search focus
  $('.input').focus(function() {
    if ($(this).val() == $(this).attr("title")) {
      $(this).val("");
    }
  }).blur(function() {
    if ($(this).val() == "") {
      $(this).val($(this).attr("title"));
    }
  });

  //Add class to last el
  $('.subnav li:last').addClass('last');

  //Add hover to LI for ie6
  $('ul.nav > li').hover(
		function() {
		  $(this).addClass("hover");
		},
		function() {
		  $(this).removeClass("hover");
		}
  );

});


