// Flash-Schriften sifr
$(function () {
 $.sifr({path:'tools/jQuery/jquery.sifr/fonts'});
 $('h1').sifr({font: 'Everlast', textAlign: 'left'});
 $('h2').sifr({font: 'Everlast', textAlign: 'left'});
 $('h4').sifr({font: 'Everlast', textAlign: 'left'});
 
 
});

// *****************************************************************************

// Lightbox
$(function() {
 $('a[@rel*=lightbox]').lightBox(); // Select all links that contains lightbox in the attribute rel
 });


// *****************************************************************************


// Mouse-over - Effekte

$(function() {
	$('.teaser_image').hover(
		function() { $(this).fadeTo("slow", 0.60); },
		function() { $(this).fadeTo("slow", 1); }
	);
});

$(function() {
	$('.inhalt_bild').hover(
		function() { $(this).fadeTo("slow", 0.60); },
		function() { $(this).fadeTo("slow", 1); }
	);
});

$(function() {
	$('.image_gallery').hover(
		function() { $(this).fadeTo("slow", 0.60); },
		function() { $(this).fadeTo("slow", 1); }
	);
});



$(document).ready(
   function(){ 
      $(".teaser_thumb").fadeTo("slow", 0.33);
   }
);

$(function() {
	$('.teaser_thumb').hover(
		function() { $(this).fadeTo("slow", 1); },
		function() { $(this).fadeTo("slow", 0.33); }
	);
});
