﻿
  $(document).ready(function(){


$("input[type=image], a").focus(function(){
	 $(this).blur();
	 });

    
   $("input#ctl00_RightRail1_NewsletterSignUpDropDownControl1_NewsletterSignup1_ctl00_imgBtnSubmit").hover(
      function () {
        $(this).attr("src","/images/Home/sign_up_hover.gif");
      }, 
      function () {
        $(this).attr("src","/images/Home/sign_up.gif");
      }
    );
	
	$("input#searchButton").hover(
      function () {
        $(this).attr("src","/images/Home/search_form_hover.gif");
      }, 
      function () {
        $(this).attr("src","/images/Home/search_form.gif");
      }
    );





  });
