/* Author: Christopher Zacker

*/

(document).ready(function(){
	
	$j(window).bind("resize", resizeWindow);
	function resizeWindow(e){
		
		var newWindowWidth = $j(window).width();

	   
		if(newWindowWidth < 479){                
		   $j('header').remove('nav');
		   $j('nav').appendTo('header');
		}
				  
		else if(newWindowWidth > 479){
		   $j('nav').appendTo('header');
		}
	}
});



















