var otherImages = false;

$(window).load(function () {

	if(otherImages) {
		$('#projekt_bilder').append(otherImages);
		
		var currentImg = 0;
		var nImg = $('#projekt_bilder li').size();
		
		$('#bild_buttons .next, #projekt_bilder img').click(function() {
			$('#projekt_bilder #bild_'+currentImg).fadeOut(function(){
				currentImg = (currentImg+1) % nImg;
				$('#projekt_bilder #bild_'+currentImg).fadeIn();
			});
		});
		
		$('#bild_buttons .prev').click(function() {
			$('#projekt_bilder #bild_'+currentImg).fadeOut(function(){
				currentImg = (currentImg-1);
				if(currentImg < 0) currentImg = nImg - 1;
				$('#projekt_bilder #bild_'+currentImg).fadeIn();
			});
		});
	}

});

$(document).ready(function() {	
		
	if($('#content').height() > 240) {
		$('#content').height(240);
		if($('.immo_betr').size()) {
			$('#content').jScrollPane({scrollbarMargin: 0});
		} else {
			$('#content').jScrollPane({scrollbarMargin: 15});
		}
	}
	
	$('#footer a.chin').hover(
		function(){ $(this).children('img').attr('src','/img/linkChin_high.gif'); },
		function(){ $(this).children('img').attr('src','/img/linkChin.gif'); }
	);
	
	$('#content a.chin').hover(
		function(){ $(this).children('img').attr('src','/imgCont/chinesisch_high.jpg'); },
		function(){ $(this).children('img').attr('src','/imgCont/chinesisch.jpg'); }
	);
	
}); 
