

	function toggleme(kohde,targetId,suunta) {
		
		
		
				$("#" + kohde + targetId).slideToggle('fast');
				
				if(suunta=="down"){$(".down"+targetId).hide();$(".up"+targetId).show();}
				else{
					$(".down"+targetId).show(); 
					$(".up"+targetId).hide();}
				
				} 

	function toggleall(kohde,max) {
	
	
		
		var all=max+1;
		for(var i =1; i<all; i++){
		
		$("#" + kohde + i).slideToggle('fast');
		}
	
		if($(".nayta").html()=="Nayta lisatiedot"){$(".nayta").html("Piilota lisatiedot")}
		else {$(".nayta").html("Nayta lisatiedot");}
	
	}

/*
$(document).ready(function() {
 // hides the slickbox as soon as the DOM is ready (a little sooner that page load)
 
	function toggleme(kohde,targetId) {
		$("#" + kohde + targetId).slideToggle('fast');
		if ($(this).html()==hideText) {
			$(this).html(showText);

			}
			else {
			$(this).html(hideText);

			}
		} 


});
*/


