// JavaScript Document

var logoPaths = new Array();
logoPaths[0] = "images/logo_home.png";
logoPaths[1] = "images/logo_own.png";
logoPaths[2] = "images/logo_rent.png";
logoPaths[3] = "images/logo_retail.png";
logoPaths[4] = "images/logo_community.png";
logoPaths[5] = "images/logo_contact.png";

var overPaths = new Array();
overPaths[0] = "images/logo_home_over.png";
overPaths[1] = "images/logo_own_over.png";
overPaths[2] = "images/logo_rent_over.png";
overPaths[3] = "images/logo_retail_over.png";
overPaths[4] = "images/logo_community_over.png";
overPaths[5] = "images/logo_contact_over.png";

// workaround because IE does not bicubic sample resized pngs:
var selectedPaths = new Array();
selectedPaths[0] = "images/logo_home_over_small.png";
selectedPaths[1] = "images/logo_own_over_small.png";
selectedPaths[2] = "images/logo_rent_over_small.png";
selectedPaths[3] = "images/logo_retail_over_small.png";
selectedPaths[4] = "images/logo_community_over_small.png";
selectedPaths[5] = "images/logo_contact_over_small.png";

