/*
westeast.css
artist info	: #508151
products	: #734B6B
*/

var pn;
var pnhush;
var n;
pn = location.pathname;
pnhush = pn.split('/');

str = pnhush[1];
ar = new RegExp('artist', 'i');
pr = new RegExp('products', 'i');

document.write('<style type="text/css"><!--');

if (str.match(ar)) {
document.write('a { color: #508151;}');
} else if (str.match(pr)) {
document.write('a { color: #734B6B;}');
} else {
}
document.write('--></style>');
