// JavaScript Document

$(document).ready(function(){ 
   
   $("#work input").click(function() 
    { 
        if ($(this).val() == "commercial") {
				$("#company").show(); 
				$("#type").show();
		} else if ($(this).val() == "residential") {
				$("#type").show();
				$("#company").hide(); 
		}
	});
   
   $("#type input").click(function() 
    { 
        if ($(this).val() == "carpet") {
				$("#details").show(); 
				$("#carpets").show();
				$("#contact_info").show();
				$("#upholstery").hide(); 
		} else if ($(this).val() == "upholstery") {
				$("#details").show();
				$("#upholstery").show();
				$("#contact_info").show();
				$("#carpets").hide();
		} else if ($(this).val() == "carpet_upholstery") {
				$("#details").show();
				$("#upholstery").show();
				$("#contact_info").show();
				$("#carpets").show();
		}
	});
   
   	$("a.group").fancybox({
		'zoomSpeedIn':	300, 
		'zoomSpeedOut':	300, 
		'overlayShow':	false
	});
   
});