/**
 * Javascript-Functions - PROJECT
 * (c) CLICKSPORTS DIGITAL SOLUTIONS
 * http://www.clicksports.de
 * 
 * $Rev: 2184 $
 * $Author: mw $
 * $Date: 2010-07-19 15:07:42 +0200 (Mo, 19 Jul 2010) $
 */
 jQuery(document).ready(function() {

		//FANCYBOX SECTION
        jQuery('.contents a img').removeAttr('ismap');

        var allowedExtensions = ['jpg', 'jpeg', 'png', 'gif'];
        jQuery.each(jQuery('.contents a'), function() {
          
                var myext_arr = jQuery(this).attr('href').split('.');
                if(jQuery.inArray(myext_arr[myext_arr.length-1], allowedExtensions) !== -1) {
                        
                        jQuery(this).select
                        jQuery(this).fancybox();
                        $(this).addClass('no_bg');
                        $('<span class="zoom"></span>').appendTo(this);
                }
        });

        jQuery('.images a').fancybox();
});
