﻿
var curLocation = window.document.location.toString ();
var tempLocation = curLocation.split ("/");
var tempJumpPage = tempLocation [tempLocation.length - 1].split (".");
var jumpPage = tempJumpPage [0];

var htmlPages = ["default", "why-compelling", "why-flexible", "why-efficient", "why-connect", "downloads", "wallpaper", "video", "news-pr", "news", "customer-quotes", "blogs", "tools", "resources", "faq", "install"];
var hashMarks = ["1_1", "2_1", "2_2", "2_3", "2_4", "3_1", "3_2", "3_3", "4_1", "4_2", "4_3", "5_1", "6_1", "6_2", "7_1", "8_1"];

for(cPage = 0; cPage < htmlPages.length; cPage++){
    if(htmlPages[cPage] == jumpPage){
    
        var jumpIndex = cPage;
        break;
    }

}



var JUMP_PAGE = hashMarks[jumpIndex];



