// JavaScript Document



/* MENU */
/**
* runs once the page is loaded
*/
$(document).ready(
     function(){

          $(".menu img").hover(
           function()
           {
            this.src = this.src.replace("-inactive.gif","-active.gif");
												
           },
           function()
           {
            this.src = this.src.replace("-active.gif","-inactive.gif");
           }
          );                   

     }
 );


/* CALLS TO ACTION */
$(document).ready(
     function(){

          $(".hp-ctas img").hover(
           function()
           {
            this.src = this.src.replace("-001.gif","-001-hv.gif");
           },
           function()
           {
            this.src = this.src.replace("-001-hv.gif","-001.gif");
           }
          );                   

     }
 );


/* JQUERY SPLASH */

$(document).ready(
     function(){

          //alert( 'Hello! You have included the js code correctly!' );

          $(".hp-jquery-splash img").hover(
           function()
           {
            this.src = this.src.replace("-inactive.jpg","-active.jpg");
           },
           function()
           {
            this.src = this.src.replace("-active.jpg","-inactive.jpg");
           }
          );                   

     }
 );

$(document).ready(
     function(){

          //alert( 'Hello! You have included the js code correctly!' );

          $(".control img").hover(
           function()
           {
            this.src = this.src.replace("-inactive.gif","-active.gif");
           },
           function()
           {
            this.src = this.src.replace("-active.gif","-inactive.gif");
           }
          );                   

     }
 );
