
// HTML5 Backup Scripts for Browsers that Do Not Support the New Structure Elements
document.createElement('header');
document.createElement('footer');
document.createElement('section');
document.createElement('article');
document.createElement('aside');
document.createElement('nav');


// Clear Focus Script for Search Bar
function clearText(thefield){
if (thefield.defaultValue==thefield.value)
thefield.value = ""
} 
