var referrer = document.referrer;
document.write('<img src="http://www.mysumo.de/counter/dot.php?' + referrer + '&smocid=468" alt="Counter" style="display:none;">');

function hide(element) {
  document.getElementById(element).style.visibility = "hidden";
}
function show(element) {
  document.getElementById(element).style.visibility = "visible";
}

//**********************
//JQuery Ajax und Effects
//**********************

$(document).ready(function(){
    $("#sidebar_ajax_load").load("../data/ajax_load/sidebar_ajax.html",function(){
        $("#mehr").click(function(){
            $("#ul_mehr").toggle("slow");
        });
    });
    
    $("#trustedshops").load("../data/ajax_load/trusted_ajax.html");
    
    $("#konto").load("../data/ajax_load/anmeldung_ajax.html");
	
	$("#navisuche").load("../data/ajax_load/suche_ajax.html");    
});

function element_toggle(id_element,speed){

	$(document).ready(function(){
		if(speed != ""){
		$("#"+id_element).toggle(speed);
		} else {
		$("#"+id_element).toggle();
		}
	});	
}
