// JavaScript Document
$(document).ready(function(){
    
    $("#newsSubmit").hover(
      function () {
        $(this).addClass("newsHover");
      }, 
      function () {
        $(this).removeClass("newsHover");
      }
    );
	
	$("#sendbutton").hover(
      function () {
        $(this).addClass("sendHover");
      }, 
      function () {
        $(this).removeClass("sendHover");
      }
    );
	
	$("#sendbutton2").hover(
      function () {
        $(this).addClass("sendHover");
      }, 
      function () {
        $(this).removeClass("sendHover");
      }
    );
	
	$("#sendbutton3").hover(
      function () {
        $(this).addClass("sendHover");
      }, 
      function () {
        $(this).removeClass("sendHover");
      }
    );
	

	
});