//following uses jQuery as a Javascript Library
$(document).ready(function() {


	
	$("#sBoxPots").hover(
		function() { //mouse over state
			$("#sBoxPots .sBoxLink a").html("Full Description");
			$("#sBoxPotsRoll").fadeIn();
			$("#sBoxPotText").slideDown();
		}, 
		function() { //mouse out state
			$("#sBoxPots .sBoxLink a").html("More Info");
			$("#sBoxPotsRoll").fadeOut();
			$("#sBoxPotText").slideUp();
		}
	);
	$("#sBoxBroadband").hover(
		function() { //mouse over state
			$("#sBoxBroadband .sBoxLink a").html("Full Description");
			$("#sBoxBroadbandRoll").fadeIn();
			$("#sBoxBroadbandText").slideDown();
		}, 
		function() { //mouse out state
			$("#sBoxBroadband .sBoxLink a").html("More Info");
			$("#sBoxBroadbandRoll").fadeOut();
			$("#sBoxBroadbandText").slideUp();
		}
	);
	$("#sBoxCabling").hover(
		function() { //mouse over state
			$("#sBoxCabling .sBoxLink a").html("Full Description");
			$("#sBoxCablingRoll").fadeIn();
			$("#sBoxCablingText").slideDown();
		}, 
		function() { //mouse out state
			$("#sBoxCabling .sBoxLink a").html("More Info");
			$("#sBoxCablingRoll").fadeOut();
			$("#sBoxCablingText").slideUp();
		}
	);

	
	
});

