$(document).ready(function(){

	var minSideImgHeight=0;
	var tempMinSideImgHeight=0;

	$('#sideimg img').each(function(){
		tempMinSideImgHeight=$(this).innerHeight();

		if(tempMinSideImgHeight>minSideImgHeight){
			minSideImgHeight=tempMinSideImgHeight;
		}
	});

	$('#sideimg')
		.css('height',minSideImgHeight)
		.cycle({
			speed:   1200,
			timeout: 4000
	});

	$('#slideshow .item').each(function(){
		tempMinSideImgHeight=$(this).innerHeight();

		if(tempMinSideImgHeight>minSideImgHeight){
			minSideImgHeight=tempMinSideImgHeight;
		}
	});

	$('#slideshow')
		.css('height',minSideImgHeight)
		.cycle({
			speed:   1200,
			timeout: 4000
	});

});
