$(function(){
	
	$('.menu-category').not('.here').children('ul').hide();
	
	$('.menu-category > a').click(function() 
	{
		if ($.browser.safari && $.browser.version < 420) {
			$(this).parent().children('ul').toggle();
		}
		else {
			$(this).parent().children('ul').slideToggle();
		}
		return false;
	});
	
	$('.popup').click(function() 
	{
		var page = $(this).attr('href');
		window.open(page);
		return false;
	});
	
});