/* ----------------------------------------------------------------------------------
 *  Copyright (c) 2006, Connect-The-Shots Digital Studios
 * ----------------------------------------------------------------------------------
 */


/*  Preload buttons
 */


var aImages = new Array(6);

aImages[0] = new Image(71,24);
aImages[0].src = "images/btn_home_on.gif";
aImages[1] = new Image(83,24);
aImages[1].src = "images/btn_gallery_on.gif";
aImages[2] = new Image(96,24);
aImages[2].src = "images/btn_products_on.gif";
aImages[3] = new Image(100,24);
aImages[3].src = "images/btn_aboutus_on.gif";
aImages[4] = new Image(98,24);
aImages[4].src = "images/btn_ordering_on.gif";



function swapSrc(img) {
  var s;

  // old browsers
  if (img.ALTSRC) {
		s = img.src;
		img.src = img.ALTSRC;
		img.ALTSRC = s;
	} else if (img.getAttribute("ALTSRC")) {
		s = img.src;
		img.src = img.getAttribute("ALTSRC");
		img.setAttribute("ALTSRC", s);
	}
}


function mailto_connecttheshots () {
	location.href = "mailto:info" + "@" + "connectthe" + "shots.c" + "om";
}


function mailto_orders () {
	location.href = "mailto:orders" + "@" + "connectthe" + "shots.c" + "om";
}


function photoPopup(url, pwidth, pheight, winid) {
	var w;

	if (!winid) {
		winid = "ctspop";
	}

	w = window.open("photopopup.htm?url=" + encodeURIComponent(url), winid,
	                "width=" + (pwidth+20) + ",height=" + (pheight+60) + ",resizable"
	                );
	w.setTimeout("window.focus()", 60);
}