$(document).ready(function() {
						   
	swfobject.embedSWF("/res/swf/header.swf", "masthead", "950", "114", "6.0.0", "expressInstall.swf");
		   
	//$("#adjunctive").find("ul").hide();
	$("#subnav_adjunctive").addClass("open");
	
	$("#techniques").find("ul").hide();
	
	$("#subnav_adjunctive").bind("click",function(){
		if($(this).is(".open")) {
			$(this).removeClass("open"); $("#adjunctive").find("ul").slideUp("fast");
		} else {
			$(this).addClass("open"); $("#adjunctive").find("ul").slideDown("normal");
		}
	});
	
	$("#subnav_techniques").bind("click",function(){
		if($(this).is(".open")) {
			$(this).removeClass("open"); $("#techniques").find("ul").slideUp("fast");
		} else {
			$(this).addClass("open"); $("#techniques").find("ul").slideDown("normal");
		}
	});
	
});