function switchImages() { 
	$('#mainimage').fadeOut("slow", function(){
		// slide 1
		$("#mainimage").html('<a href="http://www.hd.ca/mitsubishiprojectors/hc3800.php"><img src="images/index-ad1.jpg" alt="Mitsubishi HC3800 1080p Home Theatre Video Projector" /></a><a href="http://www.hd.ca/panasonic/tcp50vt25.php"><img src="images/index-ad2.jpg" alt="Panasonic TC-P50VT25 50 inch 1080p Plasma 3DTV" /></a><a href="http://www.hd.ca/dvdplayers/dmpb100.php"><img src="images/index-ad3.jpg" alt="Panasonic DMP-B100 8.9 inch Portable Blu-ray Disc player" /></a>').fadeIn("slow");
		$("#mainimagetext").html('Mitsubishi HC3800 1080p Home Theatre Video Projector / Panasonic TC-P50VT25 50 inch 1080p Plasma 3DTV').fadeIn("slow");
		// slide 2
	});
}

// preloads the slide images
jQuery.preloadImages = function() {
  for(var i = 0; i<arguments.length; i++) {
    jQuery("<img>").attr("src", arguments[i]);
  }
}

$.preloadImages("images/index-ad1.jpg", "images/index-ad2.jpg", "images/index-ad3.jpg");

// start slides when page loads
$(document).ready(function(){ setTimeout(switchImages, 4000); });
