jQuery('document').ready(function(){

    jQuery("a[rel^='prettyPhoto']").prettyPhoto({
        theme: 'facebook',
        slideshow: false
    });
    
    jQuery('#show_all_calendar_thumbs').click(function(){
        
        jQuery('#calendar_hide_lines').css('display','block');

        return false;
        
    });

    jQuery('.calendar_take_now').click(function(){

        jQuery('#calendar_ordering').css('display', 'block');

    });

    jQuery('#calendarCount').change(function(){

        count = parseInt(jQuery(this).val()) * 29;

        total = count + 5;

        jQuery('#calendarCountTotal').html(count + "Lt");
        jQuery('#calendarTotal').html(total + "Lt");

    });

});
