﻿$(document).ready(function(){

//FancyBox
$("a[rel^='pic']").fancybox({
		'zoomSpeedIn':	700, 
		'zoomSpeedOut':	700,
		'overlayShow': true,
		'imageScale' : true,
		'frameWidth': 800,
		'frameHeight' : 700,
		'enableEscapeButton' : true,
		'hideOnOverlayClick':true,
		'centerOnScroll' : false
	
		
	});
//FancyBox iframe
$("a.iframe").fancybox({
		'padding': 0,
		'zoomSpeedIn':	700, 
		'zoomSpeedOut':	700,
		'overlayShow': true,
		'imageScale' : true,
		'frameWidth': 800,
		'frameHeight' : 600,
		'enableEscapeButton' : true,
		'hideOnOverlayClick':true,
		'centerOnScroll' : false
	
	});
//FancyBox Edit
$("a.iframe_edit").fancybox({
		'padding': 0,
		'zoomSpeedIn':	700, 
		'zoomSpeedOut':	700,
		'overlayShow': true,
		'imageScale' : true,
		'frameWidth': 790,
		'frameHeight' : 660,
		'enableEscapeButton' : true,
		'hideOnOverlayClick':true,
		'centerOnScroll' : false/*,
		'callbackOnClose': function(){location.reload(true)}*/
	
	});	
				

//Lehrt das Suchfeld falls noch "Suche" drinsteht
	$('#suchfeld').click(function(){
		
			wert = $(this).val();
			
			if (wert == "Suche")
			{
				$(this).val("");
			}
		
	});
	
//Validate Form
$("#triathlon_form").validate();


	
});