	
$(document).ready(function(){ 
	
	WindowX=window.innerWidth ? window.innerWidth : $(window).width();
	packControls();

	function packControls()
	{
		if(WindowX < 769)
		{
			$('nav ul').css({'display':'block'});
			$('section#secondary section, section#secondary nav, nav').each(function(){
			title=$(this).children('h1');
			content='<div class="collapse">'+$(this).html()+'</div>';
			$(this).children().remove();
			$(this).append(title);
			$(this).append(content);
			
			});
			$('div.collapse h1').remove();
			$('div.collapse').hide();

			$('section#secondary h1').click(function(){
				
				$(this).next('div.collapse').slideToggle();	
			});
			$('body > nav h1').click(function(){
				
				$(this).next('div.collapse').slideToggle();
			});	
		}
	}





	
	


});         

