$(document).ready(function(){
	
	var old_top = $('#infokasten').css('top');
	
	$('#infokasten')
		.mouseenter(function(){
			$(this).stop().animate(
				//{top:"0px"},600,'easeOutBounce')
				{top:"0px"},600)
			})
		.mouseleave(function(){
			$(this).stop().animate(
				{top:old_top},600)
			})
	
	$('#shoplink a')
		.mouseenter(function(){
			$('#herz').attr('src','files/tpl/img/herz_weiss.png');
		})
		.mouseleave(function(){
			$('#herz').attr('src','files/tpl/img/herz.png');
	})
	
	var tropfenAktiv = 'files/tpl/img/tropfen_w.png';
	var tropfenInaktiv = 'files/tpl/img/tropfen.png';
	
	function toggleTropfen(){
		if ( $('#tropfen').attr('src') == tropfenAktiv )
			$('#tropfen').attr('src',tropfenInaktiv);
		else $('#tropfen').attr('src',tropfenAktiv);
	}
	
	$('#druckstubenlink a')
		.mouseenter(function(){
			toggleTropfen();
		})
		.mouseleave(function(){
			toggleTropfen();
	})
	
	// externe Links in neuem Fenster öffnen
	$('a[href^=http://]:not([href~="http://made-in-wilhelmsburg.de/"])').attr({target: "_blank"});
	$('area[href^=http://]:not([href~="http://made-in-wilhelmsburg.de/"])').attr({target: "_blank"});

})
