document.observe('dom:loaded', function() {
	var x2=$('toolbarUp');
	var t1=$('toolbar');
	var t2=$('toolbar2');
	var ql=$('quicklinks');
	var tb=$('toolbarBubble');

	$$('a.toolbarDown').each(function(e) {
		e.observe('click', function() {
				t1.style.display="none";
				t2.style.display="block";
		});
	});
	x2.observe('click', function() {
			t2.style.display="none";
			t1.style.display="block";
	});
	$('showLike').observe('click', function() {
			var lk=$('facebookLike');
			var sl=$('showLike');
			if(lk.style.width=="80px") {
				lk.style.width="400px";
				sl.innerHTML="&laquo;";
			} else {
				lk.style.width="80px";
				sl.innerHTML="&raquo;";
			}
	});
	ql.observe('click', function() {
			var sm=$('toolbarSubQuicklinks');
			if(!sm.style.display || sm.style.display=="none") {
				sm.style.display="block";
				ql.title="Quicklinks verbergen";
			} else {
				sm.style.display="none";
				ql.title="Quicklinks anzeigen";
			}
	});

	/*$('x_twitter').observe('mouseover', function() {
			tb.style.left="92px";
			tb.innerHTML="<br />Folge uns auf Twitter";
	});
	$('x_twitter').observe('mouseout', function() {
			tb.style.left="-120px";
			tb.innerHTML="";
	});*/
	$('x_facebook').observe('mouseover', function() {

			tb.style.left="105px";
			tb.innerHTML="<br />Folge uns auf Facebook";
	});
	$('x_facebook').observe('mouseout', function() {
			tb.style.left="-120px";
			tb.innerHTML="";
	});
	/*$('x_rss').observe('mouseover', function() {
			tb.style.left="158px";
			tb.innerHTML="<br />Pferdemarkt RSS-Feed";
	});
	$('x_rss').observe('mouseout', function() {
			tb.style.left="-120px";
			tb.innerHTML="";
	});*/
	ql.observe('mouseover', function() {
			tb.style.left="140px";
			tb.innerHTML="<br />Wichtiges auf einen Blick";
	});
	ql.observe('mouseout', function() {
			tb.style.left="-120px";
			tb.innerHTML="";
	});
	$('x_pflanzenmarkt').observe('mouseover', function() {
			tb.style.left="555px";
			tb.innerHTML="<br />Shoppen im Pflanzenmarkt";
	});
	$('x_pflanzenmarkt').observe('mouseout', function() {
			tb.style.left="-120px";
			tb.innerHTML="";
	});
	$('x_gartenmarkt').observe('mouseover', function() {
			tb.style.left="710px";
			tb.innerHTML="<br />Shoppen im Gartenmarkt";
	});
	$('x_gartenmarkt').observe('mouseout', function() {
			tb.style.left="-120px";
			tb.innerHTML="";
	});
	$('lastOne').observe('mouseover', function() {
			tb.style.left="1139px";
			tb.innerHTML="<br />Toolbar einklappen";
	});
	$('lastOne').observe('mouseout', function() {
			tb.style.left="-120px";
			tb.innerHTML="";
	});
	$('showLike').observe('mouseover', function() {
			tb.style.left="311px";
			tb.innerHTML="<br />&quot;Gefällt mir&quot; aus-/einklappen";
	});
	$('showLike').observe('mouseout', function() {
			tb.style.left="-120px";
			tb.innerHTML="";
	});
});
