// Copyright Loyola University New Orleans
// Temporary fix to get the Flash slideshow on the studyabroad.loyno.edu homepage. Requires jQuery.
$(document).ready(function(){
													 
	if(typeof document.body.style.maxHeight === "undefined") {
     // Browser is IE6, so do nothing
	} else {
		$("#slideshow img, #slideshow p").fadeOut(1000, function callback() {
			$("#slideshow").css("height","403px").load("/_themes/homepage-slideshow.html");
		});
	}

});