//All site materials Copyright Marketing Success.com, All Rights Reserved. 
//All content contained herein is the sole copyrighted property
//of Marketing Success.com, all rights reserved.

//Reverse engineering, modification, or re-use of any part
//in any form, of any material contained within the aforementioned
//site, including, but not limited to, imaging, databases, scripting,
//or source code without the express written consent of
//Marketing Success.com, or its assigned officers,
//is EXPRESSLY PROHIBITED.

//Any such use will constitute infringement of copyright, as well
//as piracy of software as defined under US Codes 17 & 18, and
//will be prosecuted to the fullest extent of all applicable
//local/state/federal laws.

if (document.images) {
  image1on = new Image();
  image1on.src = "images/but_purchase_on.gif";
  image2on = new Image();
  image2on.src = "images/but_homeequity_on.gif";
  image3on = new Image();
  image3on.src = "images/but_refinance_on.gif";
  image4on = new Image();
  image4on.src = "images/but_consolidation_on.gif";
  
  image1off = new Image();
  image1off.src = "images/but_purchase_off.gif";
  image2off = new Image();
  image2off.src = "images/but_homeequity_off.gif";
  image3off = new Image();
  image3off.src = "images/but_refinance_off.gif";
  image4off = new Image();
  image4off.src = "images/but_consolidation_off.gif";
 }
function turnOn(imageName) {
  if (document.images) {
    document[imageName].src = eval(imageName + "on.src");
  }
}
function turnOff(imageName) {
  if (document.images) {
    document[imageName].src = eval(imageName + "off.src");
  }
}