/*
** Aufrufe jQuery fuer FancyBox und Zebratabelle
** a.onepic = Einzelbilddarstellung
** a.picgroup = Einbindung in eine Gallery
** Zusaetzlich Modifikation der <tr> fuer wechselnde Farbdarstellung
** KLAWIN: Juni 2011
*/
jQuery(document).ready(function() {
   
   /* Hinzufuegen des rel-Attributes wenn a.class="picgroup" */
   $("a.picgroup").attr('rel', 'picgroup'); 
   
   /* Settings der Anzeige als Gallery und Einzelpopup */
   $("a[rel=picgroup], a.onepic").fancybox({
      'titlePosition'  :'inside',
      'opacity'	     : true,
      'centerOnScroll' : true,
      'transitionIn'   : 'elastic',
      'transitionOut'  : 'elastic'		
   });
    
   /* ZebraTabelle (Eigenes StyleSheet beachten!) */
	$("table.zebra1 tr:odd").addClass('odd');

});

