// JavaScript Document



// Custom Javascript Using jQuery

$(document).ready(function() {   



$('#homebutton').hover(

   function(){ // you can add as much here as you'd like

		$(this).attr('src','images/buttons/home-hover.jpg');

   }, function() { // same here

		$(this).attr('src','images/buttons/home.jpg');

   });


$('#profilebutton').hover(

   function(){ // you can add as much here as you'd like

		$(this).attr('src','images/buttons/profile-hover.jpg');

   }, function() { // same here

		$(this).attr('src','images/buttons/profile.jpg');

   });


$('#contactbutton').hover(

   function(){ // you can add as much here as you'd like

		$(this).attr('src','images/buttons/contact-hover.jpg');

   }, function() { // same here

		$(this).attr('src','images/buttons/contact.jpg');

   });


$('#getintouchbutton').hover(

   function(){ // you can add as much here as you'd like

		$(this).attr('src','images/buttons/get-in-touch-hover.jpg');

   }, function() { // same here

		$(this).attr('src','images/buttons/get-in-touch.jpg');

   });	 

$('#submit').hover(

   function(){ // you can add as much here as you'd like

		$(this).attr('src','images/buttons/send-hover.jpg');

   }, function() { // same here

		$(this).attr('src','images/buttons/send.jpg');

   });	 
	 
});  
