$(document).ready(function() {
	var $slideshow = $('#slideshow'); 
	// start the slideshow 
	$slideshow.cycle(); 
	
	// add anchors to all headlines
	$('h2, h3, h4, h5, h6').anchorlink();
	$('a.anchor').css("opacity","0.3").hover(function () {
      $(this).fadeTo("fast", 1);
    },function () {
      $(this).fadeTo("fast", 0.3);
    })
	 $('a.openIMGinpopup').lightBox({
		imageLoading: _config_docroot+'templates/default/images/lightbox-ico-loading.gif',
		imageBtnClose: _config_docroot+'templates/default/images/lightbox-btn-close.gif',
		imageBtnPrev: _config_docroot+'templates/default/images/lightbox-btn-prev.gif',
		imageBtnNext: _config_docroot+'templates/default/images/lightbox-btn-next.gif',
		imageBlank:  _config_docroot+'templates/default/images/lightbox-blank.gif'
	});
	 /*$("a.openIMGinpopup").click(function(event){
		event.preventDefault();
		GB_show($(this).attr("title"),this.href);
	 });*/
});
