$(document).ready(function() {
	$("a[href^='http']").attr('target', '_blank');
  createTip();
  $('#category li').each(function(){
    $(this).hover(function(){
	  var offset = $(this).offset();
      var tipLeft = offset.left;
      var tipTop = offset.top;
      setTip(tipTop, tipLeft, $(this).find('a').html());
    }, function(){
      removeTip();
    });
  });
  function createTip(){
    $('body').append('<div id="tooltip"></div>');
    $('#tooltip').hide();
  }
  function setTip(top, left, html){
    $('#tooltip').html(html).css({'top' : top + 60, 'left' : left}).show();
  }
  function removeTip(){
    $('#tooltip').hide();
  }
  $('#content h1:first-child, #content h2:first-child, #content h3:first-child').css('margin-top', 0);
  $('#offers .description').before('<span class="more">Mehr Informationen</span>');
  $('#offers .description').before('<span class="less">Weniger Informationen</span>');
  $('#offers .description, #offers .less').hide();
  $('#offers .more').click(function(){
    $(this).hide();
	$(this).parent().find('.less').show();
    $(this).parent().find('.description').show(400);
  });
  $('#offers .less').click(function(){
    $(this).hide();
	$(this).parent().find('.more').show();
    $(this).parent().find('.description').hide(400);
  });
});

