// JavaScript Document

// navigation hover

   $(document).ready(
				function(){
					$('.homehover').hover(function() {
					  $(this).addClass('homebtn_hover');
					  
					}, function() {
					  $(this).removeClass('homebtn_hover');
					  
					});
					
			});
   
    $(document).ready(
				function(){
					$('.whatwedohover').hover(function() {
					  $(this).addClass('whatwedobtn_hover');
					  
					}, function() {
					  $(this).removeClass('whatwedobtn_hover');
					  
					});
					
			});
	
	 $(document).ready(
				function(){
					$('.fantasticworkhover').hover(function() {
					  $(this).addClass('fantasticworkbtn_hover');
					  
					}, function() {
					  $(this).removeClass('fantasticworkbtn_hover');
					  
					});
					
			});
	 
	  $(document).ready(
				function(){
					$('.howweflowhover').hover(function() {
					  $(this).addClass('howweflowbtn_hover');
					  
					}, function() {
					  $(this).removeClass('howweflowbtn_hover');
					  
					});
					
			});
	  
	   $(document).ready(
				function(){
					$('.getwithushover').hover(function() {
					  $(this).addClass('getwithusbtn_hover');
					  
					}, function() {
					  $(this).removeClass('getwithusbtn_hover');
					  
					});
					
			});