$(document).ready(function() {
	
	$(".login-btn input").hover(
	      function () {
	        $(this).attr({ 
	          style: "margin-top: -20px",
	        });
	
	      }, 
	      function () {
	        $(this).attr({ 
	          style: "margin-top: 0",
	        });
	      }
	    );
	   
	$(".signup-btn input").hover(
	      function () {
	        $(this).attr({ 
	          style: "margin-top: -114px",
	        });
	
	      }, 
	      function () {
	        $(this).attr({ 
	          style: "margin-top: 0",
	        });
	      }
	    );
	
	$(".calculate-btn input").hover(
	      function () {
	        $(this).attr({ 
	          style: "margin-top: -46px",
	        });
	
	      }, 
	      function () {
	        $(this).attr({ 
	          style: "margin-top: 0",
	        });
	      }
	    );


/*	$('.datepicker').datepicker({
			changeMonth: true,
			changeYear: true
		});*/

	$(".data-table tr").hover(
   function()
   {
    $(this).addClass("highlight");
   },
   function()
   {
    $(this).removeClass("highlight");
   }
  )

});

