Shadowbox.loadSkin('shadowbox', '../style/');
window.onload = Shadowbox.init;

$(document).ready(function() {


	$('.tooltip').tooltip({
		 showURL: false
	});

	// Captcha
	$("#captcha").click(function(){

		var random = Math.floor(Math.random()*25600);

		$("#captcha img").attr({
			src: "../captcha/image.php?new_captcha=true&" + random
		});
	});

	// Validierung
	$("#validate_form").validate();

});