/**
 * Gallery
 * Author: CreativeGroup
 * URL: http://www.creativegroup.de/
 */
$(document).ready(function(){ 
    $("div.frp_fancyzoom_image img.big").css("opacity","0");

	$("div.frp_fancyzoom_image a.small").click(function () {
        var bigImg = $(this).parent().find("img.big")
        var smallImg = $("div.tx-frpfancyzoom-pi1 a img")
        var stopper = 0;
        
	    if (stopper == 0) {
	        var stopper = 1; //verhindert erneutes ausführen
            $(bigImg).addClass("bzindex");
            
    		$(bigImg).animate({
    			opacity: 1
            }, 1500);
            
            $(bigImg).click(function () {
                $(smallImg).css("opacity","0");
                
                $(bigImg).animate({
                    opacity: 0
                }, 1500, function() {
                    $(bigImg).removeClass("bzindex");
                    
                    $(smallImg).css("opacity","1");
                    var stopper = 0;
                });
            });
            return false;
            
        } else {
            return false;
        }
    });
});
