// Lightbox initialisieren
$(document).ready(function() {
	// Google Maps nicht initialisieren
	$('#contentLeft .imgContainer a:not([href*=maps.google.de])').lightBox();
	$('#contentRight .imgContainer a').lightBox();			
	
	$("#markenOverview a").css('opacity', 0.75);
	
	$("#markenOverview a").mouseover(function () {
		$(this).fadeTo("fast", 1);
	}).mouseout(function() {
		$(this).fadeTo("fast", 0.75);	
	});
	
	$('form:not([class="newsletterSidebar"])').validate();
});