function innitGallery()
{


	$('#galleryblock').FadingGallery(
	{

	});

	$('#galleryflashcont').each(function()
	{
		objectHeight = $(this).height();
		objectWidth = $(this).width();
		if (objectHeight < 380) $(this).css('top', Math.round((380-objectHeight)/2));
		if (objectWidth < 630) $(this).css('left', Math.round((630-objectWidth)/2));
	});
}

