$(document).ready(function()
{
						   
	//Href Remove Borders
	$("a").focus(
		function() { this.blur(); }
	);
	
	//$("#wide").dropShadow({left: -18, top: 0, opacity: 0.9, blur: 6});
	
	//Navigation Rollover
	$("img.over").hover(
		function() { this.src = this.src.replace("_static", "_over"); },
		function() { this.src = this.src.replace("_over", "_static"); }
	);
	
	//ContactForm
	$("#contactForm").validate();

	/*ContactForm
	$("#contactForm").validate({
		rules: {
			name: "required",
			email: {
				required: true,
				email: true
			},
			subject: "required",
			message: "required"
		},
		messages: {
			name: "Bitte Namen eingeben.",
			email: "Bitte Email eingeben.",
			subject: "Bitte Betreff eingeben.",
			message: "Bitte Nachricht eingeben."			
		}
	});*/
	
	//Spam Protection for Emailadresses
	$('a.contactmail').each(function(){
		e = this.rel.replace('/', '@').replace(':', '.');
		this.href = 'mailto:' + e;
		$(this).text(e);
	});
	
});
