		function inContent()		{			$('#main-content a,#urhere a').click(function()			{				var tit = $(this).attr("title");				var headtitle = tit + ' - Web-Skripte.de';				document.title = headtitle;				$('#main-content').load(this.href+'?js=e');				$('#urhere').html('Sie sind hier: <a title="'+tit+'" href="'+this.href+'">'+tit+'</a>');				return false;			});		}		$(document).ready(function()		{			inContent();			$('#menu-content a,#contact-button a,#urhere a').click(function()			{				var tit = $(this).attr("title");				var headtitle = tit + ' - Web-Skripte.de';				document.title = headtitle;				$('#main-content').load(this.href+'?js=e',inContent);				$('#urhere').html('Sie sind hier: <a title="'+tit+'" href="'+this.href+'">'+tit+'</a>');				return false;			});		});