$(document).ready(function() 
{
	Categories.init();
});

function popup(url, title, width, height)
{
	// open galerie in a new popup-window
	params  = 'width='+width;
	params += ', height='+height;
	params += ', top=0, left=0';
	params += ', fullscreen=np';
	params += ', toolbar=no';
	params += ', status=yes';
	
	newwin=window.open(url, title, params);
	if (window.focus) {newwin.focus()}
	return newwin;
}

Categories =
{
	init: function()
	{
		// close cats
		var value = $("#selectedCatGroups").val();
		var selectedCatGroups = value.replace(/ /g, ", .");
		$(".categories li").not(".main"+selectedCatGroups).hide();
	},
	categoryToggle: function(id, depth)
	{
		$(".categories li.group"+id+".depth"+(depth+1)).toggle();
	}
}
