function openMetroPopup(url){
  width  = 660;
  height = 600; 
  window.open(url, "popup", "width="+width+", height="+height+", scrollbars=yes");
  return false;
} 

$().ready(function(){

	$(".cat-item-16 a:first").click(function(){				
		$(".children").toggle();
		return false;
	});

});	

