$(document).ready(function() {

    $('.pic').fancybox({
        'titleShow'	: false,
        'transitionIn'	: 'elastic',
        'transitionOut'	: 'elastic',
        'hideOnContentClick': false,
        'onStart': function() {
	/*
            tmp = $(this).attr( 'href' );//bad, but it's a fancybox object without id...
            picID = tmp.substring( tmp.lastIndexOf('_') + 1 );
            if (window.picIDs.length == 0 || window.picIDs.indexOf( picID ) == -1 )  {
                $('#'+picID).text('Zum Warenkorb hinzufügen');
            } else {
               $('#'+picID).text('Vom Warenkorb entfernen');
               $('.shoppingCartCount').text(window.picIDs.length + ' im Warenkorb');
            }
*/

        }
    });

});

