jQuery(document).ready(function()
{
	//----------------------------------------------------
	// Add parameter &L=0 to german language flag link
	$(".tx-srlanguagemenu-pi1 div a").each(function(index) {
	
		// Only for first (german) div element
		if (index == 0) {
			// Set new href attribute
			var hrefAttributeNew = $(this).attr("href") + "&L=0";
			$(this).attr("href", hrefAttributeNew);
		}
	});	
});
