$(document).ready(function() {

// store url for current page as global variable
 current_page = document.location.href

    // apply selected states depending on current page
    if (current_page.match(/default.aspx/)) {$(".container").attr('id', 'home');
	
	  } else if (current_page.match("/")) {$(".container").attr('id', 'home');	//on site land
    } else if (current_page.match(/story.aspx/)) {$(".container").attr('id', 'story');	
    } else if (current_page.match(/services.aspx/)) {$(".container").attr('id', 'services');	
    } else if (current_page.match(/products.aspx/)) {$(".container").attr('id', 'products');	
    } else if (current_page.match(/solutions.aspx/)) {$(".container").attr('id', 'solutions');	
	} else if (current_page.match(/expert.aspx/)) {$(".container").attr('id', 'expert');	
	
	// don't mark any nav links as selected
	} else { $(".container").attr('id', 'blank');	
    };
	


});



