 var $j = jQuery.noConflict();

/* aufklappen */ 
 
$j(document).ready(function() {
      $j(".i_aufklapptitel").click(         
        function() {
			$j(this).toggleClass("ausgeklappt");
			$j(this).next().toggle("fast");
            /*$("div.i_aufklapptext").toggle("fast"); */      
            }
        );  
	  
	// Slideshow
	anzahl = $j(".i_bild img").length;
	if (anzahl > 1) {
		imageInterval = window.setInterval("changeImage();", 4000);
		currentImage = 0;
		fadeInterval = 2000;
	}

	$j(".facebook_iframe").append('<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.ahenergetik.at%2F&amp;send=false&amp;layout=standard&amp;width=50&amp;show_faces=false&amp;action=like&amp;colorscheme=light&amp;font&amp;height=35" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:80px; height:35px;" allowTransparency="true"></iframe></li></ul></div></div>');


});
  
  
/* galerie

var accordion = "";
window.addEvent('domready', function(){
	accordion = new Accordion($$('div.chgallery-title'), $$('div.chgallery-content'), {
		alwaysHide:true,
		opacity: false,
		//display: 0,
		show: 0,
		onActive: function(toggler, element){
			toggler.addClass('act');
		},
	 
		onBackground: function(toggler, element){
			toggler.removeClass('act');		
		}
	}, $('chgallery-list'));	

}); */



 
// Slideshow
function changeImage() {
	// Ausblenden des aktuellen Bildes:
	$j(".i_bild img:eq(" + currentImage + ")").fadeOut(fadeInterval);
	if (currentImage+1 == anzahl) {
		$j(".i_bild img:eq(0)").fadeIn(fadeInterval);
		currentImage = 0;
	} else {
		currentImage = currentImage+1;
		$j(".i_bild img:eq(" + currentImage + ")").fadeIn(fadeInterval);
	}
}
