
(function($){

	$(document).ready(function(){

		// setup menus.
		$('#menu a').colorbox(
			{
				rel: 'menu',
				initialWidth: 335,
				initialHeight: 285,
				opacity: 0.8
			},
			// callback
			function(){
				// setup text.
				var text = $(this).children('img').attr('alt');
				text = text.split('\\n');
				$('#cboxTitle')
					.wrapInner('<em></em>')	// title
					.append(text.join('<br />'))	// description
				;
				
				// hide 'index of' text.
				$('#cboxCurrent').hide();

				// adjust bottom contents height.
				var bottomHeight = $('#cboxTitle').height() + 16;	// height + padding.
				$('#cboxContent').animate({ paddingBottom: (bottomHeight / 10) +'em' });
			}
		);
		
	});

})(jQuery);
