function initClassicGallery(){
	$('#classicGalleryImages').cycle({
		fx : 'fade',
		speed : 500,
		timeout: 0,
		cleartype: 1,
		prev: '#Classic_Gallery_Prev',
		next: '#Classic_Gallery_Next',
		before: classicGalleryOnBefore,
		after: classicGalleryOnAfter
	});
}

function classicGalleryOnBefore(curr, next){
	nextId = $(next).attr('id');
	
	nextCaption = $("#"+nextId+" div.Classic_GalleryImageCaption").html();

	$("#gallery_classic_gallery_image_captions").html(nextCaption);
	
	imgHeight = $("#"+nextId+" img.Classic_GalleryImage").attr('height');
	
	$("#classicGalleryImages").height(imgHeight);
}

function classicGalleryOnAfter(){
	curId = $(this).attr('id');

	imgHeight = $("#"+curId+" img.Classic_GalleryImage").height();
	
	$("#classicGalleryImages").height(imgHeight);
}

