$(document).ready(function() {

	$('#nav').accordion({ 
    autoheight: false, 
    header: '.head', 
    navigation: true
	});
	
	 		$(".colContent:not(.panelOpen)").hide();
 		$(".colTab").click(function(){
			$(this).toggleClass('panelUp');
    		$(this).next(".colContent").slideToggle(200);
  		});
});