var imgages_url = "http://www.verdienstpilot.de/vp_test/images/social/";

var bm_facebook = "window.open('http://de.facebook.com/share.php?u='+encodeURIComponent(location.href)+'&amp;t='+encodeURIComponent(document.title));return false;";
var bm_twitter = "window.open('http://twitter.com/intent/tweet?text='+encodeURIComponent(document.title)+'&amp;url='+encodeURIComponent(location.href));return false;";
var bm_mrwong = "window.open('http://www.mister-wong.de/index.php?action=addurl&amp;bm_url='+encodeURIComponent(document.location)+'&amp;bm_description='+encodeURIComponent(document.title));return false;";
var bm_oneview = "window.open('http://www.oneview.de/add/?title='+encodeURIComponent(document.title)+'&amp;URL='+encodeURIComponent(document.location));return false;";
var bm_google = "window.open('https://www.google.com/bookmarks/mark?op=add&amp;bkmk='+encodeURIComponent(document.location)+'&amp;title='+encodeURIComponent(document.title));return false;";
var bm_friendfeed = "window.open('http://friendfeed.com/share?url='+encodeURIComponent(document.location)+'&amp;title='+encodeURIComponent(document.title));return false;";

document.write('<div id="social"><div class="socialleft"><img style="margin-top:5px;" src="'+imgages_url+'empfehlen-sie-uns.png" alt="Empfehlen Sie uns" width="181" height="32" /></div>');

document.write('<div class="socialleft"><a rel="nofollow" href="http://de.facebook.com" onclick="'+bm_facebook+'" title="Auf Facebook mit Freunden teilen"><img class="socialimg" src="'+imgages_url+'facebook-24.png" width="24" height="24" alt="Auf Facebook mit Freunden teilen" /></a></div><div class="socialtext"> Facebook</div>');

document.write('<div class="socialleft"><a rel="nofollow" href="http://twitter.com" onclick="'+bm_twitter+'" title="Diese Seite bei Twitter posten"><img class="socialimg" src="'+imgages_url+'twitter-24.png" width="24" height="24" alt="Diese Seite bei Twitter posten" /></a></div><div class="socialtext"> Twitter</div>');

document.write('<div class="socialleft"><a rel="nofollow" href="http://www.mister-wong.de" onclick="'+bm_mrwong+'" title="Diese Seite bei Mister-Wong bookmarken"><img class="socialimg" src="'+imgages_url+'mister-wong-24.png" width="24" height="24" alt="Diese Seite bei Mister-Wong bookmarken" /></a></div><div class="socialtext"> Mister-Wong</div>');

document.write('<div class="socialleft"><a rel="nofollow" href="http://www.oneview.de" onclick="'+bm_oneview+'" title="Diese Seite bei Oneview bookmarken"><img class="socialimg" src="'+imgages_url+'oneview-24.png" width="24" height="24" alt="Diese Seite bei Oneview bookmarken" /></a></div><div class="socialtext"> Oneview</div>');

document.write('<div class="socialleft"><a rel="nofollow" href="http://www.google.com" onclick="'+bm_google+'" title="Diese Seite bei Google bookmarken"><img class="socialimg" src="'+imgages_url+'google-24.png" width="24" height="24" alt="Diese Seite bei Google bookmarken" /></a></div><div class="socialtext"> Google</div>');

document.write('<div class="socialleft"><a rel="nofollow" href="http://www.friendfeed.com" onclick="'+bm_friendfeed+'" title="Auf FriendFeed mit anderen teilen"><img class="socialimg" src="'+imgages_url+'friendfeed-24.png" width="24" height="24" alt="Auf FriendFeed mit anderen teilen" /></a></div><div class="socialtext"> FriendFeed</div>');

document.write('</div><div style="clear:both;"></div>');

var moveBy = 5;
var wrapper = document.getElementById("wrapper");
var timer;

function getWrapHeight() {
   return parseInt(wrapper.style.top);
}

function setWrapHeight(newHeight) {
   wrapper.style.top = newHeight + "px";
}

function moveDown() {
   var currentHeight = getWrapHeight();
   var newHeight = currentHeight + moveBy;
   newHeight = Math.min(0, newHeight);
   setWrapHeight(newHeight);
   if (newHeight >= 0) {
      clearInterval(timer);
   }
}

setWrapHeight(-100);
   timer = setInterval("moveDown()", 50); 

