$(document).ready(function(){

	
	if (jQuery.browser.msie && jQuery.browser.version < 7) {	
	        $(document).pngFix(); 
	}

	$("div.loneMenu a").each( function(i) {
		if ( $("div.lone_alle_tische_strip").html() != null) {
			this.pos = -i*184;
			$(this).hover(
			      function () {
					$("div.lone_alle_tische_strip").css({"background-position":"left " + this.pos + "px"})
			        
			      }, 
			      function () {

			      }
			    );
		}
	});
	
	
	$("#materialien img").each( function(i) {
		$(this).mouseover( function () {
			$("#materialien p").text($(this).attr("title"));
		})
	});
	
});