$(document).ready(function(){

	$('.box_kolor').click(function(){
	
	
		var id2 = $(this).attr("id");
		var id = $(this).attr("id").split("_");
		
		$('.active_box_kolor').removeClass('active_box_kolor').addClass('box_kolor');
		$('#'+id[0]).html('<div style="width: 40px; margin-left: 60px;"><img src="repository/layout/main-busy.gif" style="margin-top: 40px;" /></div>').load("getContentAjax.php?plugin=Catalogue&content=foto&inst="+id[1]+"&id="+id[0], 
		function(data){
		}		
		);  
		$('#'+id2).removeClass('box_kolor').addClass('active_box_kolor');
		
	});
}); 