// $Id: functions.js 22 2010-05-17 14:22:00Z hweber $// ==========================================================================// JQuery-Funktionen initialisieren// ==========================================================================$(document).ready(function(){	// ==========================================================================	// Hyperlinks	// ==========================================================================	// Link in einem neuen Fenster öffnen	$('a.new_window').click(		function () {			window.open( $(this).attr('href') );			return false;		}	);	// ==========================================================================	// Slimbox2-Bildergalerie	// ==========================================================================	// Slimbox-Bilder initialisieren	jQuery(function($) {		$("a[rel^='lightbox']").slimbox({counterText: 'Bild {x} von {y}'}, null, function(el) {			return (this == el) || ((this.rel.length > 8) && (this.rel == el.rel));		});	});});