$(document).ready(function() {
	$('.puff').fitted();
	$('.toppuff').fitted();
	$('.receptpuff').fitted();
	//$('#contentwrapper').corners("8px top-left top-right");
	if( $('#myGalleryText') )
	{	
		var n = $('#myGalleryText').find('.gallerytext').length;
		if( n > 0 )
		{
			$('#myGalleryText').css("visibility","hidden");
			for( i=0; i < n; i++ )
			{
				// set height of text items
				var item = $('#myGalleryText').find('.gallerytext').get(i);
				$(item).css({ "display": "block" });
				var content = $(item).find(".textcontent").get(0);
				var h = $(content).height();
				$(item).css({ "display": "none" });
				var bg = $(item).find(".textbg").get(0);
				$(bg).fadeTo(10,0.5);
				var top = 50 - h;
				$(bg).css({ "height": h+"px", "top": top+"px" });
				$(content).css({ "top": top+"px" });
			}
			$('#myGalleryText').css("visibility","visible");
		}
	}
});

$(window).bind('load', function () {
	if( $('#myGalleryText') )
	{	
		var n = $('#myGalleryText').find('.gallerytext').length;
		if( n > 0 )
		{
			$('#myGallery').cycle('fade');
			if($.browser.msie)
			{
				$('#myGalleryText').cycle({ 
	    			fx:    'fade', 
	    			speed:  0 
	 			});
			}
			else
			{
				$('#myGalleryText').cycle('fade');
			}
		}
	}
});
