// JavaScript Document
// The rollover effects for the categories on the homepage
function categoryTransition(el,color,action){
	switch(action){
		case "over":
		    el.style.backgroundImage = "url(images/category_inner_shadow.png)";
			el.style.backgroundColor = color;
			el.style.padding = "4px 2px 0px 2px";
		break;
		case "out":
		    el.style.backgroundImage = "";
			el.style.backgroundColor = color;
			el.style.padding = "2px 2px 2px 2px";
		break;
	}
}
