// JavaScript Document

/**
* runs once the page is loaded
*/

jQuery(document).ready(
    function(){

        //alert( 'here' );

        jQuery(".right_col_cta img").hover(
            function()
            {
                this.src = this.src.replace(".jpg","-hover.jpg");
            },
            function()
            {
                this.src = this.src.replace("-hover.jpg",".jpg");
            }
            );


    }
    );




/** used to track outgoing page links 
 *
 onClick="recordOutboundLink(this);return false;"
 ***/

  function recordOutboundLink(link) {
     category = "Outbound Links";
    _gat._getTrackerByName()._trackEvent(category, link.href);
    setTimeout('document.location = "' + link.href + '"', 100);
  }

