/* Imagemap */
function karte_on(x)
{
	if(x < 10)
	{
		window.document.images['karte-159'].src = "fileadmin/templates/images/content/imagemaps/de-karte-159px-0"+x+".gif"; //path relative to site
	}
	else
	{
		window.document.images['karte-159'].src = "fileadmin/templates/images/content/imagemaps/de-karte-159px-"+x+".gif";
	}
}

function karte_out()
{
	window.document.images['karte-159'].src = "fileadmin/templates/images/content/imagemaps/de-karte-159px-00.gif";
}

jQuery(document).ready(function() { 
  jQuery.fn.lightbox();
  jQuery.fn.detectMobile();
});


/* Mobile detection */
jQuery.fn.detectMobile = function() {
	/* only iPhone and iPad */
	if ((navigator.userAgent.toLowerCase().match(/iP(hone|ad)/i)!=null)?true:false) {
		jQuery('html').addClass('safarimobile');
	} else jQuery('html').addClass('no-safarimobile');
}

/* Lightbox */
jQuery.fn.lightbox = function() {

  // default Lightbox/Overlay
  jQuery("a[rel]").overlay({
    mask: '#595552', 
    top: 124,
    preload: false,
    fixed: false
  });

};



