// Jquery
$(document).ready(function(){
	$("input[@name$='cbWebDesignAndDevelopment']").click(function() {
		if (this.checked) 
			$("#wdd").show();
		else
			$("#wdd").hide();
		});
	$("input[@name$='rblWdd']").click(function() {
		 switch($(this).val())
			{
			case "New Site for new business?":
				$("#suboptions-currenturl").hide();
				$("#suboptions-logodevelopment").show();
			break;
			case "Redesign for existing business?":
			   $("#suboptions-currenturl").show();
			   $("#suboptions-logodevelopment").hide();
			break;
			case "New Site for existing business?":
			   $("#suboptions-currenturl").hide();
			   $("#suboptions-logodevelopment").hide();
			break;
			}	
		});
	$("input[@name$='cbContentManagementSystem']").click(function() {
		if (this.checked) 
			$("#cms").show();
		else
			$("#cms").hide();
		});
	$("input[@name$='cbStreamingMedia']").click(function() {
		if (this.checked) 
			$("#sm").show();
		else
			$("#sm").hide();
		});
	$("input[@name$='cbECommerce']").click(function() {
		if (this.checked) 
			$("#ec").show();
		else
			$("#ec").hide();
		});
	$("input[@name$='cbSEO']").click(function() {
		if (this.checked) 
			$("#seo").show();
		else
			$("#seo").hide();
		});
	$("input[@name$='cbWebHosting']").click(function() {
		if (this.checked) 
			$("#wh").show();
		else
			$("#wh").hide();
		});
});