// JavaScript Document

/* if(document.getElementById(home))
{
	document.getElementById(home_btn).style.color = "blue";
}
else if(document.getElementById(testimonial))
{
	document.getElementById(testimonial_btn).style.color = "blue";
}
else if(document.getElementById(contact))
{
	document.getElementById(contact_btn).style.color = "blue";
} */
 function pageActive(obj)
{
	document.getElementById(obj).style.borderBottom = "Solid 2px";
} 
/*
alert('checked');
 if(document.getElementById(home) == document.getElementById(obj))
{
	alert('home');
	document.getElementById(home_btn).style.color = "blue";
}
else if(document.getElementById(testimonial))
{
	alert('testimonail');
	document.getElementById(testimonial_btn).style.color = "blue";
}
else if(document.getElementById(contact))
{
	 alert('contact');
	document.getElementById(contact_btn).style.color = "blue";
} */
