function preisoffen (Adresse) {
  Fenster = window.open(Adresse, "Zweitfenster", "scrollbars=yes,resizable=no,width=680,height=535");
  Fenster.focus();
}

function bformoffen (Adresse) {
  Fenster1 = window.open(Adresse, "Zweitfenster", "scrollbars=yes,resizable=no,width=680,height=535");
  Fenster1.focus();
}

function datenschutz (Adresse) {
  Fenster1 = window.open(Adresse, "Zweitfenster", "scrollbars=yes,resizable=no,width=680,height=535");
  Fenster1.focus();
}

function umfrageoffen (Adresse) {
  Fenster1 = window.open(Adresse, "Zweitfenster", "scrollbars=yes,resizable=no,width=680,height=535");
  Fenster1.focus();
}

$(function(){
	$('#test a')
		.css( {backgroundPosition: "0 0"} )
		.mouseover(function(){
			$(this).stop().animate({backgroundPosition:"(0 -250px)"}, {duration:500})
		})
		.mouseout(function(){
			$(this).stop().animate({backgroundPosition:"(0 0)"}, {duration:500})
		})
});