$(document).ready(function() {
	imgresize();
	P7_ExpMenu();
	$('#slideshow').html(
		'<img src=\"images/slideshow/szews_preaching.jpg\" width=\"920px\" height=\"200px\" alt=\"Fr. Szews preaching\"/>' +
		'<img src=\"images/slideshow/newman_outside.jpg\" width=\"920px\" height=\"200px\" alt=\"The Ecumenical Religious Center\"/>' + 
		'<img src=\"images/slideshow/erc.jpg\" width=\"920px\" height=\"200px\" alt=\"The Ecumenical Religious Center\"/>'
	);
	$('#slideshow').cycle({
		fx: 'fade' // choose your transition type, ex: fade, scrollUp, shuffle, etc...
	});

});

function imgresize(){
	$("#rightColumn img").each(function(){
		var width = $(this).width();
		var ratio = 0;
		var height = $(this).height();
		var maxWidth = 609;
		if(width > maxWidth){
			ratio = maxWidth / width;
			$(this).css("width",maxWidth);
			$(this).css("height", height * ratio);
		}
	});
}