    /* Overlay bei Bildgalerie
    --------------------------------------------------------------------- */
$(function() {
	$(".bildgalerie a[rel]").overlay({effect: 'apple'});
});
    /* Overlay bei Bildgalerie neben Flash
    --------------------------------------------------------------------- */
$(function() {
	$(".bild a[rel]").overlay({effect: 'apple'});
});
    /* Overlay bei Bildern links im Content
    --------------------------------------------------------------------- */
$(function() {
	$(".bild_links a[rel]").overlay({effect: 'apple'});
});
    /* Overlay bei Video
    --------------------------------------------------------------------- */
$(function() {
	$("#buttons a[rel]").overlay({effect: 'apple'});
});
    /* Tooltips Filialen
    --------------------------------------------------------------------- */
$(function() {
	$("#wuerselen").tooltip({ 
	effect: 'slide',
	position: 'bottom center',
	delay: 100,
	relative: true, //default is false
	offset: [8,120]
	});
});

$(function() {
	$("#eupen").tooltip({ 
	effect: 'slide',
	position: 'bottom center',
	delay: 100,
	relative: true, //default is false
	offset: [8,120]
	});
});

$(function() {
	$("#frechen").tooltip({ 
	effect: 'slide',
	position: 'bottom center',
	delay: 100,
	relative: true, //default is false
	offset: [8,120]
	});
});

    /* Mp3 Player
    --------------------------------------------------------------------- */
AudioPlayer.setup("/system/flash/player.swf", {  
	width: 290
});  

    /* Angebot
    --------------------------------------------------------------------- */
$(document).ready(function(){

	//Horizontal Sliding
	$('.angebot.slideright').hover(function(){
					$(".cover", this).stop().animate({left:'123px'},{queue:false,duration:300});
	}, function() {
					$(".cover", this).stop().animate({left:'0px'},{queue:false,duration:300});
	});
	//To switch directions up/down and left/right just place a "-" in front of the top/left attribute
	//Vertical Sliding
	$('.angebot.slidedown').hover(function(){
					$(".cover", this).stop().animate({top:'152px'},{queue:false,duration:300});
	}, function() {
					$(".cover", this).stop().animate({top:'0px'},{queue:false,duration:300});
	});

});
    /* Tooltips Downloads
    --------------------------------------------------------------------- */
$(function() {
	$(".download").tooltip({ 
	effect: 'slide',
	position: 'bottom center',
	delay: 100,
	relative: true, //default is false
	offset: [-145,0]
	});
});

