var $j = jQuery.noConflict();
$j(document).ready(function() {

	switch(location.pathname) {
		case "/about/our-approach/":
		case "/about/the-canal/":
		case "/about/the-ducks/":
		case "/about/from-the-shell/":
		case "/about/client-reaction/":
			$('ul#about').show();
		break;

		case "/work/film/speedy-services/":
		case "/work/film/nant/":
		case "/work/film/sappi/":
		case "/work/film/basf/":
		case "/work/film/united-utilities/":
			$('ul#work, ul#film').show();
		break;

		case "/work/print/dawsons-music/":
		case "/work/print/premier-bowl/":
		case "/work/print/charity-ball/":
		case "/work/print/farida-guitars/":
		case "/work/print/unite/":
			$('ul#work, ul#print').show();
		break;

		case "/work/digital/agatha-christie/":
		case "/work/digital/peoples-history-museum/":
		case "/work/digital/royal-fusiliers-tower-of-london/":
		case "/work/digital/national-museums-liverpool/":
		case "/work/digital/the-together-trust/":
			$('ul#work, ul#digital').show();
		break;

		case "/work/storm56/jog/":
		case "/work/storm56/the-most-important-question/":
			$('ul#work, ul#storm56').show();
		break;

		case "/work/archive/bury-transport-museum/":
		case "/work/archive/west-ham-united/":
		case "/work/archive/lyn-fenton/":
		case "/work/archive/huntington/":
			$('ul#work, ul#archive').show();
		break;

	}



});
function Reveal(a){
var next_ul = a.parentNode.getElementsByTagName("ul").item(0);
$j(a).closest("ul").find("ul:visible").fadeOut("fast");
$j(next_ul).animate({height: 'toggle' ,opacity: 'toggle'}, "slow");
}
