//onload init
$(function() {	
	
	/* sitemap */
	$('div.box-sitemap div.title').click(function(){
		
		var content = $(this).next();
		if(content.is(':visible')){
			content.hide();
			$(this).removeClass('minus');
		} else {
			content.show();
			$(this).addClass('minus');	
		}
	});
	
	/* vaja päis */
	$('#openPromo a').click(function(e){ 
		$('#promo').show(); 
		$('#openPromo').hide(); 
		e.preventDefault(); 
	});
	$('#promo div.close a').click(function(e){ 
		$('#promo').hide(); 
		$('#openPromo').show(); 
		e.preventDefault(); 
	});
	
	/* uus kommentaar */
	$('#add-comment a').click(function(e){ 
		$('#new-comment').show(); 
		$('#add-comment').hide(); 
		e.preventDefault(); 
	});
	
});

/* search target switch */

function route(search)
{
	var obj = document.getElementById("search_personel").checked;
	
	document.getElementById("search_site").name = "";
	document.getElementById("search_personel").name = "";

	if (obj)
	{
		document.getElementById("op").name = "";
		document.getElementById("cx").name = "";
		document.getElementById("cof").name = "";
		document.getElementById("id").value = 21963;
	}
}
