(function ($) {
$.fn.vAlign = function() {
	return this.each(function(i){
	var h = $(this).height();
	var oh = $(this).outerHeight();
	var mt = (h + (oh - h)) / 2;	
	$(this).css("margin-top", "-" + mt + "px");	
	$(this).css("top", "50%");
	$(this).css("position", "absolute");	
	});	
};
})(jQuery);

function toggleAd() {
  var ad = jQuery('#ad');
  var ad_text = ad.find('#ad_text');
  var btn = ad.find('#ad_control_btn img');
  if (ad_text.is(':visible')) {
    ad_text.animate({ height: 'hide', opacity: 'hide' }, 500);
    btn.attr('src', '/images/ad_open.gif');
  } else {
    ad_text.animate({ height: 'show', opacity: 'show' }, 500);
    btn.attr('src', '/images/ad_close.gif');
  }
}

function showIE6Banner() {
  var html = '<div id="ie6_banner"><div class="text">Ihr Browser schippert wohl noch im letzten Jahrtausend rum? Am besten holen Sie sich den neuen <a href="http://www.microsoft.com/windows/internet-explorer/default.aspx">Internet Explorer</a>. Oder noch besser: <a href="http://www.mozilla-europe.org/de/firefox/">Firefox</a> oder <a href="http://www.google.at/chrome">Chrome</a>. Natürlich helfen wir Ihnen auch gerne dabei!</div></div>';
  jQuery('body').prepend(html);
}

jQuery(document).ready(function() {
  if(jQuery.browser.msie && jQuery.browser.version < 7) showIE6Banner();
});
