$(function() {
	// Use this example, or...
	$('a[@rel*=lightbox]').lightBox(); // Select all links that contains lightbox in the attribute rel
});

$(document).ready(function(){
	$('#pitfallsdivorcesubmit').attr('disabled', true);
	$('#childsupportsubmit').attr('disabled', true);
	$('#spousalchildabusesubmit').attr('disabled', true);
	$('#victimslegalabuseamericasubmit').attr('disabled', true);
	$('#victimslegalabusesubmit').attr('disabled', true);

    $("#pitfallsdivorce").change(function() 
    { 
		if( $("#pitfallsdivorce").val() == "Select CD or Cassette" ){
			$('#pitfallsdivorcesubmit').attr('disabled', true);
		} else {
			$('#pitfallsdivorcesubmit').attr('disabled', false);
		}
    });
	
	$("#childsupport").change(function() 
    { 
		if( $("#childsupport").val() == "Select CD or Cassette" ){
			$('#childsupportsubmit').attr('disabled', true);
		} else {
			$('#childsupportsubmit').attr('disabled', false);
		}
	});
	
	$("#spousalchildabuse").change(function() 
    { 
		if( $("#spousalchildabuse").val() == "Select CD or Cassette" ){
			$('#spousalchildabusesubmit').attr('disabled', true);
		} else {
			$('#spousalchildabusesubmit').attr('disabled', false);
		}
	});
	
	$("#victimslegalabuseamerica").change(function() 
    { 
		if( $("#victimslegalabuseamerica").val() == "Select CD or Cassette" ){
			$('#victimslegalabuseamericasubmit').attr('disabled', true);
		} else {
			$('#victimslegalabuseamericasubmit').attr('disabled', false);
		}
	});
	
	$("#victimslegalabuse").change(function() 
    { 
		if( $("#victimslegalabuse").val() == "Select CD or Cassette" ){
			$('#victimslegalabusesubmit').attr('disabled', true);
		} else {
			$('#victimslegalabusesubmit').attr('disabled', false);
		}
	});
}); 
