
function changeColor(obj, oi, menu) {

	if(oi == 'i')
		obj.style.backgroundColor='#8A0407';
	else
		obj.style.backgroundColor='Black';

}

function sendURL(dest) {

	switch(dest) {
		case 'Contact':
			document.location='contact.php';
			break;
		case 'Pricing':
			document.location = 'pricing.php';
			break;
		case 'Gallery':
			document.location = 'gallery.php';
			break;
		case 'Services':
			document.location = 'payments.php';
			break;
		case 'Home':
			document.location = 'index.php';
			break;

	}
}
