$(document).ready(function(){
	$('#theme').cycle();

    //add clearer to every to every 2nd item
    if ($.browser.msie){
        $('#content .news-list-item-even').after("<br class='clear' />");
    };
    
                
    

    // fancybox
    $('a.lightbox').fancybox(
    {
        zoomSpeedIn:   300,
        zoomSpeedOut:  300,
        overlayShow:   true,
        titlePosition: 'over' //'inside' // alternativen: 'over' (transparent), 'outside' (achtung: nur einzeiliger text moeglich)
    });
   
    //News carousel
    
    //auto: 8500,
    
    
    $(".news-carousel").jCarouselLite({
        btnNext: ".news-carousel-next",
        btnPrev: ".news-carousel-prev",
        speed: 800,
        auto: false
    });
    
    
    $('.news-carousel-outer').css( {
        'width': '625px',
        'height': '120px',
        'overflow' : 'hidden',
        'margin-left': '-30px',
        'background' : 'url(/fileadmin/layouts/main/public/gfx/news-carousel.png) no-repeat center 0'
    } );
    
    
    $('.news-carousel-outer .news-carousel-button').css( {
        'display': 'block'
    });
    
   

    $('#MyFlowGallery').append('<a class="thickbox" id="MyFlowGallery-clicklink" rel="imageflow" href="#"></a>');
      // fancybox
    $('a.thickbox').fancybox(
    {
        zoomSpeedIn:   300,
        zoomSpeedOut:  300,
        overlayShow:   true,
        titlePosition: 'over' //'inside' // alternativen: 'over' (transparent), 'outside' (achtung: nur einzeiliger text moeglich)
    });
    
    

});

function setLinkForFancybox(linkTarget, linkTitle) {
    var attributes = {
        href: linkTarget
    }
    if (linkTitle)
    {
        attributes.title = linkTitle;
    }
    $('#MyFlowGallery-clicklink').attr(attributes);
}


/*
   $('#block-links .marken .markenliste li a span.fade').show();
  
   $('#block-links .marken .markenliste li a').hover(function(){
      $(this).children('.fade').hide();
   }, function() {
      $(this).children('.fade').show();
   });
*/



