function hideIt(theField) {
	if (theField.value == "Email" || theField.value == "Password") {
		theField.value = "";
	}
}
 // hack to fix IE background image caching 
try {
	document.execCommand("BackgroundImageCache", false, true);
} catch(err) {} 

$(document).ready( function() {
	if ( typeof DROPMENU !== 'undefined' ) {
		DROPMENU.init( {
			container: '#nav',
			menuClass: 'sub_container',
			butClass: 'nav_btn',
			subClass: 'sec_menu_container'
		 } );
	}
} );
