/* ----- Galerie ----- */
var cache = "gallery_start_image";
var timer = 0;

$(window).bind('load', function() {
	$("#gallery_container_thumbs a").hover(function() {
        clearTimeout(timer);
        var rel = $(this).attr("rel");
		var target = rel.substring(0, rel.length-4);
		var path = "./files/"+rel;
        $("#gallery_start_text").fadeOut(1000);
		$("#"+target).attr({src: path});
		$("#"+cache).fadeOut(1000);
		$("#"+target).fadeIn(1000);
        cache = target;
    }, function() {
        if(document.getElementById("gallery_start_text")) {
            timer = setTimeout("resetText()", 3000);
        }
    });
});

function resetText() {
    $("#"+cache).fadeOut(1000);
    $("#gallery_start_text").fadeIn(1000);
}

