// JavaScript Document

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

        //alert( 'here' );

        jQuery(".hp_cta img, .int_cta img, .hp_content_left .cta img, .service_expert_btns img, .tax_button img").hover(
            function()
            {
                this.src = this.src.replace(".jpg","-hover.jpg");
            },
            function()
            {
                this.src = this.src.replace("-hover.jpg",".jpg");
            }
            );


    }
    );
