/*
client:          Kindertagesstaetten im Kulturkreis Ottobrunn
client website:  www.kita-kulturkreis.de
author:          Michael Eichelsdoerfer
author website:  www.michael-eichelsdoerfer.de
*/

$(document).ready(function(){

	// new windows for outbound links
	$("a[href^='http']").each(function(){
		if (window.location.hostname != this.hostname){
			$(this).attr("target","_blank");
		}
	});

	// new windows for certain file suffixes
	$("a[href$='.pdf'], a[href$='.PDF']").attr("target","_blank");

	// lightboxes
	$(".lightbox").each(function(){
		$(this).find("a[rel*=lightbox]").lightBox({
			imageLoading:  '/workspace/assets/jquery.lightbox/images/ajax-loader.gif',
			imageBtnClose: '/workspace/assets/jquery.lightbox/images/close.gif',
			imageBtnPrev:  '/workspace/assets/jquery.lightbox/images/prev.gif',
			imageBtnNext:  '/workspace/assets/jquery.lightbox/images/next.gif',
			imageBlank:    '/workspace/assets/jquery.lightbox/images/lightbox-blank.gif',
			containerResizeSpeed: 600,
			txtImage: 'Bild',
			txtOf: 'von',
			overlayOpacity: 0.5
		});
	});
	
});
