//$(document).ready(function(){
$(document).ready(function(){
    $(document).pngFix();
    $('.private-tours-div').css('display','none')
    $('.private-tours-h2').click(function(){
        var e=this;
        $('.private-tours-div.shown').removeClass('shown').fadeOut(500,function(){
           $(e).next().addClass('shown').fadeIn(1000);
        });
    });
    $('.private-tours-div:first').css('display','block').addClass('shown');
    $('.photo-gallery,.ourguides').each(function(){
        $(this).find('a:has(img)').lightBox();
    })
	$('.staticlightbox').each(function(){
        $(this).find('a').lightBox();		
	})

    $('.datepicker').datePicker({
        'clickInput':true,
        'createButton':false,
        'verticalOffset':25
    });
    $('textarea.rich').each(function(){
        $(this).ckeditor({
            path : baseUri+'ckeditor/'
        });
    });
    $('a.photoEditToggle').click(function(e){
        e.preventDefault();
        $(this).parent().find('.photoEditForm').show();
    });
});
