/*
	http://www.rhubba.com/_assets/script/
*/

function murph(thing,woof,url) {
	var url; 
	
	if(woof=='over')	{ thing.className = 'navHover'; }
	if(woof=='out')		{ thing.className = ""; }
	if(woof=='fetch')	{ parent.location.href=url; }
}


function fumble(thing,woof,shade,url) {
	var biscuit = 'fcatRow'+shade;
	
	if(woof=='over')	{ thing.className = 'fcatRowHover'; }
	if(woof=='out')		{ thing.className = biscuit; }
	if(woof=='down')	{ parent.location.href=url; }
}


function linky(id, woof, col){
	if(col=='black' || col=='purple' || col=='green' || col=='blue') {
		if(woof=='over'){ document.getElementById(id).style.color = "#000000"; }
		if(woof=='out') { document.getElementById(id).style.color = "#FFFFFF"; }
	}
}