$(document).ready(function(){

	var minBannerImgHeight=0;
	var tempMinBannerImgHeight=0;

	$('#banner img').each(function(){
		tempMinBannerImgHeight=$(this).innerHeight();

		if(tempMinBannerImgHeight>minBannerImgHeight){
			minBannerImgHeight=tempMinBannerImgHeight;
		}
	});

	//Standard Slideshow
	$('#banner')
		.css('height',minBannerImgHeight+2)
		.cycle({
			speed:   1200,
			timeout: 4000
	});


	/*Slideshow with Navigation, delete if not applicable
	$('.slideshow')
	.after('<div id="cyclenav"><span class="label">Additional Images:</span></div>')
	.cycle({
		speed:   600,
		timeout: 0,
		pager: '#cyclenav'
	});
	*/
});

