
$(document).ready(function() {

				
				$('#datepicker').DatePicker({
					flat: true,
					date: ['2010-07-01', '2010-07-02', '2010-07-08', '2010-07-09', '2010-07-10', '2010-07-15', '2010-07-17', '2010-07-23', '2010-07-24', '2011-02-22'],
					format: 'Y-m-d',
					calendars: 1,
					mode: 'multiple',
					starts: 0,
					onChange: function(formated, dates){
						temp = formated[0].split('-');
						location.href = "/kalendarium/" + temp[0] + "/" + temp[1];
					}

				});
			
			

 
      $('.font-size').click(function(){
                var size = $(this).css('fontSize');              
                $('.entry').css('fontSize', size);
                $.cookie("fontSize", size);
        });             
                        


         if($.cookie("fontSize"))
   {
        $('.entry').css('fontSize', $.cookie("fontSize"));
        };







    $(".anyClass").jCarouselLite({
        btnNext: ".next",
        btnPrev: ".prev"
    });


	if ($('a[rel*=lightbox]').length>0){
		$('a[rel*=lightbox]').lightBox(); 
	}
  
  
  
   
    
 });
 
