// Startet die Shadowbox
Shadowbox.init();



$(document).ready(function() {

// Bildergalerie Highlights    
    $(".stallbild").mouseover(function () {
      $(this).fadeTo("fast", 0.8);
    });
	$(".stallbild").mouseout(function () {
      $(this).fadeTo("fast", 1.0);
    });


// Muuh Sound auf Blüemli
        $('#bluemli').mouseover(function() {            
            $.fn.soundPlay({url: 'assets/templates/wernu2010/sound/cow.mp3', playerId: 'embed_player', command: 'play'});
        });


});

