// visitors counter
	$(".geshopt span").hide(); //hide #visitors else fadeIn wont work
	$(".geshopt span").load("ajax.php?url=http://www.%systemdomain%/php/ajax/visitors.php"); //get # visitors using ajax. ajax.php is a wrapper to be able to request from remote domains
	$(".geshopt span").fadeIn("slow"); //show number of visitors
// end visitors counter
