$(document).ready(function(){

//lightbox alias Fancybox
$('a[rel^=lightbox], a[rel^=fancybox], a[rel^=pic], a.iframe, a.iframe_edit').fancybox({
		'width'					:   790,
		'height' 				:   660,
		'overlayShow'			:	true,
		'overlayOpacity'		:	0.3,
		'overlayColor'			:	'#666',
		'titleShow'				:	true,
		'titlePosition'			:	'inside',	// 'outside', 'inside' or 'over'
		'transitionIn'			:	'fade',	// 'elastic', 'fade' or 'none'
		'transitionOut'			:	'fade',	// 'elastic', 'fade' or 'none'
		'speedIn'				:	300,
		'speedOut'				:	300,
		'changeSpeed'			:	300,
		'changeFade'			:	'fast',
		'easingIn'				:	'swing',
		'easingOut'				:	'swing'
	});				


//Validate Form
$("#triathlon_form").validate();


//Text vergrößern falls keine Seitneleiste da ist
var infobox = document.getElementById('infobox');
var infoboxMaxWidth = $('#text').css('max-width');
if(infobox == null)
{
	$('#text').css('width', infoboxMaxWidth);
}

	
});
