function switchImages() { 
	$('#mainimage').fadeOut("slow", function(){
		// slide 1
		$("#mainimage").html('<a href="http://www.hd.ca/sinclairspeakers/cubesystem.php"><img src="images/index-ad1.jpg" alt="Sinclair Audio Brighton 5.1 Surround Sound Home Theatre Cube System" /></a><a href="http://www.hd.ca/onkyo/txsr608.php"><img src="images/index-ad2.jpg" alt="Onkyo TX-SR608 THX Select2 Plus Certified 7.2-Channel Home Theatre Receiver with Monster Power HTS-950 Power Center" /></a><a href="http://www.hd.ca/panasonicprojectors/ptae4000u.php"><img src="images/index-ad3.jpg" alt="Panasonic Canada PT-AE4000U 1080p Home Theater Video Projector with 1600 ANSI Lumens" /></a>').fadeIn("slow");
		$("#mainimagetext").html('Panasonic PT-AE4000U Home Theater Video Projector with 1600 ANSI Lumens / Sinclair Audio Brighton 5.1 Surround Sound Home Theatre Cube System').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, 1300); });