$(document).ready(function(){
	checkImprintLink();
});

/* checks if we need another imprint link in footer navigation */
function checkImprintLink() {
	// driver training needs another imprint link
	if(location.href.indexOf("/de/de/insights/driving_experience/drivertraining/") != -1 || location.href.indexOf("/de/de/general/imprint_mgmbh/") != -1) {
		replaceImprintLink("mgmbh");
	}
	if(location.href.indexOf("/de/de/general/financial_services/") != -1 || location.href.indexOf("/de/de/general/imprint_fs/") != -1) {
		replaceImprintLink("fs");
	}
	if(location.href.indexOf("/de/de/general/imprint_mgmbh_company/") != -1) {
		replaceImprintLink("mgmbh_company");
	}
}

/* replaces imprint link in footer navigation */
function replaceImprintLink(imprint) {
	if(typeof imprint != 'undefined' && imprint != '') {
		var originalLink = "/de/de/general/imprint/legal_disclaimer.html";
		var imprintLinkFooter = $('#bottomNavigation #bottomLinks .linklist_horizontal  a[href="' + originalLink + '"]');
		
		if(imprint == 'mgmbh') imprintLinkFooter.attr("href", getWcmsPrefix() + "/de/de/general/imprint_mgmbh/legal_disclaimer.html");
		if(imprint == 'fs') imprintLinkFooter.attr("href", getWcmsPrefix() + "/de/de/general/imprint_fs/legal_disclaimer.html");
		if(imprint == 'mgmbh_company') imprintLinkFooter.attr("href", getWcmsPrefix() + "/de/de/general/imprint_mgmbh_company/legal_disclaimer.html");
	}
}

function writeConnectedDriveImg() {
	document.write('<img src="http://www.bmw.de/de/de/_common/shared/img/cd_claimcd.jpg" width="237" height="44" id="cd_claim" alt="" style="position:absolute; top:654px; left:30px; padding-bottom: 50px;">');
}

function hideModuleNavigation() {
	document.write('<style type="text/css">#module_navigation {display:none;}</style>');
}
