$(document).ready(function() {

	//fix PNG-BUG IE<=6
	$("#logo").ifixpng();
	$("#main").ifixpng();
	$("#mh_logo").ifixpng();

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

		rules: {
			email: {
				email:true
			},
			useremail: {
				email:true
			}
		}
	});

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

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

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

	$('#photos').galleryView({
		panel_width: 630,
	    panel_height: 650,
	    frame_width: 87,
	    frame_height: 65,
	    background_color: 'none',
	    border: 'none',
	    nav_theme: 'dark',
	    filmstrip_position: 'top',
	    overlay_position: 'top'
	});
});
