// JavaScript Document
$(document).ready(function() {
	$("#bottom_boxes .box").hover(function() {
		switch($(this).attr("class")) {
			case "box events":		$('#arrow').css("left","99px");
									$(".box_hover").html("<h1>Find industry events near you.</h1><h2>Come visit us and stay up to date<br />with changes in the industry.</h2>");
									break;
			case "box services":	$('#arrow').css("left","342px");
									$(".box_hover").html("<h1>View the services that we offer.</h1><h2>Learn more about EMS Billing, Fire Billing, and<br />request a client information packet.</h2>");
									break;
			case "box news":		$('#arrow').css("left","582px");
									$(".box_hover").html("<h1>Read the latest industry news.</h1><h2>See what's relevant in the industry today<br />and stay updated with the latest news and happenings.</h2>");
									break;
			case "box logo":		$('#arrow').css("left","824px");
									$(".box_hover").html("<h1>Buy from our trusted supplier.</h1><h2>SEE is the #1 source for the tools, training, and ongoing support that gives you the power to save a life.</h2>");
									break;
		}
	});
});
