$(document).ready(function()
{
	//Here's where we hide the extra content when the page loads
	$("#divCustomIntegrationOption1").hide();
	$("#divCustomIntegration").hide();	
	$("#divPredesignIntegration").hide();
	$("#divIportIntegration").hide();
	$("#divAppleTvIntegration").hide();

	//This toggles the visibility of the Custom Integration Option 1 content
	$("#spanCustomIntegrationOption1").toggle
	(
		function()
		{
			$("#divCustomIntegrationOption1").show("slow");
		}
		,function()
		{
			$("#divCustomIntegrationOption1").hide("slow");
		}
	);
	
	//This toggles the visibility of the Custom Integration content
	$("#spanCustomIntegration").toggle
	(
		function()
		{
			$("#divCustomIntegration").show("slow");
		}
		,function()
		{
			$("#divCustomIntegration").hide("slow");
		}
	);
	
	//This toggles the visibility of the Predesign Integration content
	$("#spanPredesignIntegration").toggle
	(
		function()
		{
			$("#divPredesignIntegration").show("slow");
		}
		,function()
		{
			$("#divPredesignIntegration").hide("slow");
		}
	);	
	
		//This toggles the visibility of the iPort Integration content
	$("#spanIportIntegration").toggle
	(
		function()
		{
			$("#divIportIntegration").show("slow");
		}
		,function()
		{
			$("#divIportIntegration").hide("slow");
		}
	);	
	
	//This toggles the visibility of the Apple TV Integration content
	$("#spanAppleTvIntegration").toggle
	(
		function()
		{
			$("#divAppleTvIntegration").show("slow");
		}
		,function()
		{
			$("#divAppleTvIntegration").hide("slow");
		}
	);	
		
	

});
