// mouseover functions
bg_color1 = '#c5223f'
bg_color2 = '#e6b718'
bg_color3 = '#336699'
bg_color4 = '#37b04a'
bg_color5 = '#ffffff'
function bg_1(item) {
	item.style.backgroundColor = bg_color1;
	item.style.color = '#ffc7cd';
	item.style.cursor='hand';
}
function bg_2(item) {
	item.style.backgroundColor = bg_color2;
		item.style.color = '#333333';
	item.style.cursor='hand';
}
function bg_3(item) {
	item.style.backgroundColor = bg_color3;
	item.style.color = '#e2ebf0';
	item.style.cursor='hand';
}
function bg_4(item) {
	item.style.backgroundColor = bg_color4;
	item.style.color = '#ffffff';
	item.style.cursor='hand';
}
function bg_5(item) {
	item.style.backgroundColor = bg_color5;
	item.style.color = '#333333';
	item.style.cursor='hand';
}
function bg_slut(item,color) {
	item.style.backgroundColor = color
	item.style.color = color
}