// RSS-Links zeigen
function showRSS(todo)
{
	switch(todo)
	{
		case "show":
		  document.getElementById("rss-overlay").style.display = "block";
		  break;
		case "hide":
		  document.getElementById("rss-overlay").style.display = "none";
		  break;
	}
}

// Bilder wechseln
function changeImage(img, image_url)
{
  img.src = image_url;
}



// RSS-Button Mouseover

rss_button_low = new Image();
rss_button_low.src = "http://netzlogbuch.de/wp-content/themes/netzlogbuch/i/rss_button_low.png";     /* erste Standard-Grafik */
rss_button_high = new Image();
rss_button_high.src = "http://netzlogbuch.de/wp-content/themes/netzlogbuch/i/rss_button_high.png"; 	/* erste Highlight-Grafik */

//senden_button_low = new Image();
//senden_button_low.src = "http://netzlogbuch.de/wp-content/themes/netzlogbuch/i/btn_senden.gif";      /* zweite Standard-Grafik */
//senden_button_high = new Image();
//senden_button_high.src = "http://netzlogbuch.de/wp-content/themes/netzlogbuch/i/btn_senden_high.gif"; 	/* zweite Highlight-Grafik */


function Bildwechsel (Bildnr, Bildobjekt) {
  window.document.images[Bildnr].src = Bildobjekt.src;
}




// Bildschirm
/*var appenddots = window.setInterval("$('#loading').append('.')", 500);

$(document).ready(function(){
  $("#bildschirm_container").hide();
  $("#col1 .rechts").append('<p id="loading" style="padding: 20px 0 0 0;">Laden</p>')
});

$(window).load(function () {
  window.clearInterval(appenddots);
  $("#loading").remove();
  $("#bildschirm_container").slideDown(2000);
});*/