var extraNav = "";
var mainNavHeadLine = "";
var mainNavHtml = "";
var rightNav = "";
///
///
/// Generate top nav
///
///
extraNav = '
Extra navigation
';
///
///
/// Generate left nav
///
///
mainNavHtml = '- Mode
- Magasins
- Social Media Room
- Travailler chez H&M
- Presse
- Investor Relations
- Responsabilit\u00E9 de l\'entreprise
- \u00C0 Propos de H&M
';
///
///
/// Generate right nav
///
///
rightNav = ''+
'
Trouvez votre emploi
'+
'
'+
'- Magasin
'+
'- '+
''+
'
'+
'
'+
'
';
function getExtraNav() {
document.write(extraNav);
}
function getMainNav() {
document.write(mainNavHeadLine);
//
// Detect flash
//
//var hasReqestedVersion = DetectFlashVer(requiredMajorVersion, requiredMinorVersion, requiredRevision);
var hasReqestedVersion = false; // We don't support the flash menu on external sites right now...
if (hasReqestedVersion) { // if we've detected an acceptable version
document.write(mainNavFlash);
} else { // flash is too old or we can't detect the plugin print out html menu
document.write(mainNavHtml);
}
}
function getRightContent() {
document.write(rightNav);
}