//////////////////////////
// HANDSPIEL GmbH
// Torsten Schaefer
// support@handspiel.net
// jQuery Funktionen für MDBK 
// © 2011
/////////////////////////

/*
function updateMenuPosition(){
  if($('.outer-wrapper, .outer-wrapper-thin').height() > $(window).height()){
     $('.fixed-wrapper').css('width','1020px');
   }
}*/
jQuery(document).ready(function($) {

  /* adding rel tag to images with link */
  $(".fancybox-wrapper a").each(function(){
    $(this).attr('rel','group1');
    $('<span class="image-lupe"></span>').appendTo(this);
    $('.image-lupe', this).css({
      'left' : ($(this).outerWidth()-35),
      'top' : ($(this).outerHeight()-25)
    });
  });
	/* This is basic - uses default settings */
	
	$(".fancybox-wrapper a").fancybox({
    'titlePosition' : 'over',
    'href' : $(this).parent('a').attr('href')
  });
  $('.iframe').fancybox({
  'width' : '100%',
  'height' : '100%'
  });
   // adjust float for sitemap
   $('.tx-flseositemap-pi1 ul li.deep0:odd').each(function(){
      //$(this).text($(this).index());
      $('<div class="clear"></div>').insertAfter($(this));
   });
   
   
});

