function adjustSlideshowDimentions() {

    var slideshowWidth = parseInt($('#slideshow').width()).toFixed();
	var slideshowHeight = parseInt($('#slideshow').height()).toFixed();
	
	if ((slideshowHeight/slideshowWidth) > ratio){
		$('#bg img').removeClass('max-width').addClass('max-height');
	} else {
		$('#bg img').removeClass('max-height').addClass('max-width');
	}
	
}
function initSlideshow() {

	var imgWidth = parseInt($('#slideshow img:first-child').width()).toFixed();
	var imgHeight = parseInt($('#slideshow img:first-child').height()).toFixed();
	ratio = imgHeight / imgWidth;

	adjustSlideshowDimentions();
	$(window).resize(function() {
		adjustSlideshowDimentions();		
	});
	
	$('#slideshow').cycle({
		random: 1
	});
	
}
