﻿// Created by waqass@memory4less.com

if (window.location.href.indexOf("ResumeView.aspx") > -1) {
    document.getElementById('tab_1').className='current';
}
if (window.location.href.indexOf("ContactInfo.aspx") > -1) {
    
    document.getElementById('tab_2').className = 'current';
    
}
if (window.location.href.indexOf("Education.aspx") > -1) {
    document.getElementById('tab_3').className = 'current';
}
if (window.location.href.indexOf("Experience.aspx") > -1) {
    document.getElementById('tab_4').className = 'current';
}
if (window.location.href.indexOf("Questions.aspx") > -1) {
    document.getElementById('tab_5').className = 'current';
}
if (window.location.href.indexOf("Skills.aspx") > -1) {
    document.getElementById('tab_6').className = 'current';
}
if (window.location.href.indexOf("Photo.aspx") > -1) {
    document.getElementById('tab_7').className = 'current';
}



