﻿/* Creates elements for IE. Other browsers are HTML5 compatable already, so don't need it. */

document.createElement ('header');      /* the header for whole site */
document.createElement ('nav');         /* the navigation area in the header */
document.createElement ('footer');      /* the footer for site */      
document.createElement ('section');     /* the content area */
document.createElement ('aside');       /* the column used for menus if required */
document.createElement ('article');     /* each pane is an article */

