$(document).ready(function(){
	// lightbox colorbox
    $("a[rel='lightbox']").colorbox({
        transition:'fade', 
        opacity: 0.89, 
        current: "foto {current} z {total}",
        
        /*
        onOpen: function() {
            alert('hoj');
        }*/
        
    });

    // thumbnails cycler    
    $('.page-thumbnails-wrapper').cycle({
        fx: 'scrollHorz',
        speed: 500,
        timeout: 0,
        next: '#lt-next',
        prev: '#lt-prev'
    
    });

    // if there are more then 8 images, then show paginating icons
    if( $('.page-thumbnails-wrapper li').size() > 8 ) {
        $('#lt-next').removeClass('lt-next-disabled');
        $('#lt-prev').removeClass('lt-prev-disabled');
    }

    // middle images loader
    
    //.non-clickable-product-photo
    // page-thumbnails loader  click
    $('.page-thumbnails .loader').click(function(){
        $('.non-clickable-product-photo').addClass('hidden');
        $('.page-photos .show-photo').addClass('hidden');
        $('.page-photos #pro' + $(this).attr('rel')).removeClass('hidden');
        $('.maincol3 p').html($(this).parent().find('.item-specific-descr').html());
        return false;
    });

});
