function mouseover(t) {
	t.style.background ="#9ab";
	t.style.backgroundImage ="url('images/bulletCC.png')";
	t.style.backgroundPosition = "100% center";
	t.style.backgroundRepeat = "no-repeat";
	t.style.color = "#FFF";
}
function mouseout(t) {
	t.style.background ="";
	t.style.backgroundImage ="url('images/bulletCC.png')";
	t.style.backgroundPosition = "97% center";
	t.style.backgroundRepeat = "no-repeat";
	t.style.color = "#999";
}
function mouseoverdiv(t) {
	t.style.background ="#cde";
	t.style.borderColor = "#FFF";
}
function mouseoutdiv(t) {
	t.style.background ="#abc";
	t.style.borderColor = "#89a";
}
function gotourl(u) {
	window.location.href = u ;
}
