		function splashHover(item) {
			
			if(document.getElementById('splash_selected').innerHTML) {
				current_selected = document.getElementById('splash_selected').innerHTML;
				if(current_selected != item) {
					document.getElementById('spash_hover_text'+current_selected).style.display = 'none';
					document.getElementById('splash_img'+current_selected).style.display = 'none';
					document.getElementById('splash_sm_inside_item'+current_selected).style.backgroundColor = "transparent";
				
					document.getElementById('spash_hover_text'+item).style.display = 'block';
					document.getElementById('splash_img'+item).style.display = 'block';
					document.getElementById('splash_sm_inside_item'+item).style.backgroundColor = "#00512A";
				}
			} else {
				document.getElementById('spash_hover_text'+item).style.display = 'block';
				document.getElementById('splash_img'+item).style.display = 'block';
				document.getElementById('splash_sm_inside_item'+item).style.backgroundColor = "#00512A";
			}	
			
			document.getElementById('splash_selected').innerHTML = item;
		}
