//******************* EDWIN ************************//
//*      Funktionsdatei für Jquery Fancybox         *//
//**************************************************//
//   copyright, 03.2009, office@q2e.at   //

// document ready - start
jQuery(document).ready(function() {
  // remove fancybox group attribute - this avoids wrong content in fancybox
  // a link without a source specified shouldn't be displayes by fancybox
  jQuery("span.fancybox a[href='']").removeAttr('rel');
//  jQuery("span.fancybox a").fancybox();
  // create fancybox for share / recommend function

//Image zoom	
$("a[rel=lightbox-group]").fancybox({
			'overlayShow'	: true,
			'overlayOpacity': 0.8,
			'overlayColor'	: '#333',
			'titleShow'		: false,
			'transitionIn'	: '',
			'transitionOut'	: ''			  
});

//Image zoom	
$("a[rel=gallery-box-group]").fancybox({
			'overlayShow'	: true,
			'overlayOpacity': 0.8,
			'overlayColor'	: '#333',
			'titleShow'		: false,
			'transitionIn'	: '',
			'transitionOut'	: ''			  
});


//******************* EDWIN Table************************//
//*      Funktionsdatei für Tabellen*//
//**************************************************//
//   copyright, 4.2010, office@q2e.at   //
$(" table.ct_table2 tr:even td").addClass("odd");








//document ready - end
});


