// JavaScript Document
function next1(typ,farbe) {
//document.images.detailbild.src = "../rootBramac/Bramac_Austria/Produkte/Dachsteine/dachziegel_farbe2_detail.jpg";
//var haha = document.getElementById("detailbild").src
//alert(haha);
document.getElementById("detailbild").src="../fileadmin/rootBramac/Bramac_Austria/Produkte/Dachsteine/farben/" + typ + "_" + "gross" + "_" + farbe + ".jpg";
//document.farbenbild_gross.m.slide[current+1].value;

   }


$(document).ready(function() {
var title;						   
	$('div.teaser-bild a').mouseover(function(e) {
		//Grab the title attribute's value and assign it to a variable  
         title = $(this).attr('title');
         //Remove the title attribute's to avoid the native tooltip from the browser  
         $(this).attr('title',''); 
	}).mouseout(function() {
         //Put back the title attribute's value  
         $(this).attr('title',title);  
     });  
});
