var inner_height = 0;
var outer_height = 0;
var range = 0;

$(document).ready(function(){
	if($('img.patch').length > 0)
	{
		$('img.patch').hover(function(){
			$('#projekt_'+$(this).parent("a").attr("class")).addClass('highlight');
		},
		function(){
			$('.projekte a').removeClass('highlight');
		});
	}

	if($('ul.projekte').length > 0)
	{
		$('.projekt_liste').jScrollPane({showArrows:true, animateTo:true, dragMaxHeight: 32});
	}
});


function show_image(id)
{
	$('.image').hide();
	$('.thumbnail').removeClass('active');
	$('#thumb_'+id).addClass('active');
	$('#image_'+id).fadeIn("slow");
}

