  jQuery(function(){ 
    var data = {
    	children: [
    	            {href:      '',
    	             img_src:   '/images/page_element/calendar.gif',
    	             img_title: 'Rok liturgiczny z nami',
    	             img_alt:   'rok',
    	             children:  [
    	                           {href:      '/xhtml/rok/adwent/informacje/',
					    	             img_src:   '/images/adwent_maly.jpg',
					    	             img_title: '(kliknij, aby przejść do szczegółów)',
					    	             img_alt:   'Adwent'},
					    	            {href:      '/xhtml/rok/bozenarodzenie/informacje/',
					    	             img_src:   '/images/bozenarodzenie_maly.jpg',
					    	             img_title: '(kliknij, aby przejść do szczegółów)',
					    	             img_alt:   'Boże Narodzenie'},
					    	            {href:      '/xhtml/rok/post/informacje/',
					    	             img_src:   '/images/post_maly.jpg',
					    	             img_title: '(kliknij, aby przejść do szczegółów)',
					    	             img_alt:   'Wielki Post'},
					    	            {href:      '/xhtml/rok/wielkanoc/informacje/',
					    	             img_src:   '/images/wielkanoc_maly.jpg',
					    	             img_title: '(kliknij, aby przejść do szczegółów)',
					    	             img_alt:   'Wielkanoc'},
					    	            {href:      '/xhtml/rok/odpust/informacje/',
					    	             img_src:   '/images/odpust_maly.jpg',
					    	             img_title: '(kliknij, aby przejść do szczegółów)',
					    	             img_alt:   '8 grudnia'},
					    	            {href:      '/xhtml/rok/ofiarowanie/informacje/',
					    	             img_src:   '/images/ofiarowanie_maly.jpg',
					    	             img_title: '(kliknij, aby przejść do szczegółów)',
					    	             img_alt:   '2 luty'},
					    	            {href:      '/xhtml/rok/1906/informacje/',
					    	             img_src:   '/images/1906_maly.jpg',
					    	             img_title: '(kliknij, aby przejść do szczegółów)',
					    	             img_alt:   '19 czerwiec'},
					    	            {href:      '/xhtml/rok/dobrypasterz/informacje/',
					    	             img_src:   '/images/dpasterza_maly.jpg',
					    	             img_title: '(kliknij, aby przejść do szczegółów)',
					    	             img_alt:   'Dobrego Pasterza'},
					    	                 {href:      '/xhtml/rok/1409/informacje/',
					    	             img_src:   '/images/p_krzyz_maly.jpg',
					    	             img_title: '(kliknij, aby przejść do szczegółów)',
					    	             img_alt:   '14 września'}       
    	                        ]
    	            }
    	             
    	          ]
    	         };
    	         
     var directive = {
      'li': {
        'child <- children': {
        	 'a img@src': 'child.img_src',
        	 'a img@title': 'child.img_title',
        	 'a img@alt': 'child.img_alt',
          'a@href':'child.href',
          '.+': function(ctxt){
            return ctxt.child.item.children ? rfn(ctxt.child.item):'';
          }
        }
      }
    };
    
    
   
     var rfn = jQuery('nav#year_scroll ul').compile( directive); 
     jQuery('nav#year_scroll ul').render( data, rfn );	
     jQuery('nav#year_scroll img:first').addClass('icon');   
     
      if (jQuery.browser.msie)
    {
    	jQuery('#year_scroll li').mouseover( function() {jQuery(this).children("ul").show()});
    	jQuery('#year_scroll li').mouseout( function() {jQuery(this).children("ul").hide()});
    }      
   });
