// jQuery
$(document).ready(function(){
	/*	highlight tabs		*/
	// if the page contains #home, apply active class to the home tab <li>, etc.
	if ($("#home").length) $("#menu li.home").addClass("active");
	if ($("#hostingPlans").length) $("#menu li.hostingPlans").addClass("active");
	if ($("#services").length) $("#menu li.services").addClass("active");
	if ($("#accomplishments").length) $("#menu li.accomplishments").addClass("active");
	if ($("#company").length) $("#menu li.company").addClass("active");
	if ($("#contactUs").length) $("#menu li.contactUs").addClass("active");
});
