$j = jQuery.noConflict();

$j(document).ready(function(){
	$j('.jquery_kompas_handle').click(function(event){
		$j('.jquery_kompas_handle .content').slideUp('fast');
		$j('.jquery_kompas_handle').css('background-image', 'url(img/kal_down_kompas.gif)');
		$j(this)
			.css('background-image', 'url(img/kal_up_kompas.gif)')
			.find('.content').slideDown('fast');
	});
});

function slideShowKompas()
{
	var aantal_fotos = fotos.length;
	var random = Math.floor(Math.random()*aantal_fotos);
	var random_image = fotos[random];
	var new_image = img_path+random_image;
	$j('.foto_back')
				.css('background-image', 'url('+new_image+')')
				.css('background-repeat', 'no-repeat');
	setTimeout(slideShowKompas, slide_timer);
}

