function expand(cat){
	var ds = document.getElementById("right").getElementsByTagName('div');
	for (var i = 0; i<ds.length; i++){
		ds[i].className = 'bump';
	}
	document.getElementById(cat).className = 'bump expand';
}

