$(function() {
	/* Change images on mouseover */
	/* Images must have "-hover" before extension. */
	/* Only triggered when finding images with css class "imgChange" */
	$(".imgChange").hover(function() {
		$(this).attr("src", $(this).attr("src").split(".").join("-hover."));
	}, function() {
		$(this).attr("src", $(this).attr("src").split("-hover.").join("."));
	});
	
	/* Open modal window */
	$(".privacyprotection").colorbox({href:"/impressum.php p#privacyprotection"});
});
