function switchImages() { 
	$('#mainimage').fadeOut("slow", function(){
		// slide 1
		$("#mainimage").html('<a href="featured_items.php"><img src="images/index-leftad_org.jpg" alt="Panasonic PT-AE3000U Video Projector" /></a><a href="featured_items.php"><img src="images/index-rightad_org.jpg" alt="Nexus NX5203 1080p 52 inch Plasma TV" /></a>').fadeIn("slow");
		$("#mainimagetext").html('Panasonic PT-AE3000U Video Projector / Nexus NX5203 1080p 52 inch Plasma TV').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-leftad_org.jpg", "images/index-rightad_org.jpg");

// start slides when page loads
$(document).ready(function(){ setTimeout(switchImages, 1300); });