	
	function mouseOver(button, text) {
		document.getElementById(button).style.backgroundColor='#83bad0';
		document.getElementById(text).style.color='#ffffff';
	}
	
	function mouseOut(button, text) {
		document.getElementById(button).style.backgroundColor='#ffffff';
		document.getElementById(text).style.color='#3e7a92';
	}

	function pagingMouseOver(pagingDirection, pagingPage) {
		document.getElementById(pagingDirection).style.color='black';
		document.getElementById(pagingPage).style.color='#636363';
	}
	
	function pagingMouseOut(pagingDirection, pagingPage) {
		document.getElementById(pagingDirection).style.color='#636363';
		document.getElementById(pagingPage).style.color='#B2B2B2';
	}
