$(document).ready(function () {
	$('#prospekte img').mouseover(function() {
		$('.i'+$(this).attr('rel')).show();
		$(this).mouseleave(function() {
			$('.i'+$(this).attr('rel')).hide();
		});
	});
	$('#referenzen a').lightBox();
	$('#meisterhaft').lightBox();
	$('.kollektionen a.img').lightBox();
	
	var base_href = "http://www.pam-fliesen.de";
	var check_url = window.location.href.replace(base_href,"");
	check_url = check_url.replace(/\?p=([0-9]+)/,"");
	
	if(check_url == '/') {
		$('#start').parent('li').addClass('active');
	}
	if(check_url == '/kontakt') {
		$('#kon').parent('li').addClass('active');
	}
	if(check_url == '/wir') {
		$('#wir').parent('li').addClass('active');
	}
	if(check_url == '/referenzen') {
		$('#ref').parent('li').addClass('active');
	}
	if(check_url == '/impressum') {
		$('#impr').parent('li').addClass('active');
	}
	if(check_url == '/links') {
		$('#link').parent('li').addClass('active');
	}
	if(check_url == '/mosa/royal') {
		$('#mosa').parent('li').addClass('active');
	}
});
