var map = {
'http://site.ru/ya/page1.php': 'red',
'http://site.ru/ya/page2.php': 'blue'
};
window.onload = function() {
var href = window.location.href;
if (Object.prototype.hasOwnProperty.call(map, href) && map[href]) {
document.body.style.backgroundColor = map[href];
}
}