/*
Conditions
Syntax:
	conds.push(Array('element name','element value','element name', boolean));

Example:
To make the user specify income ONLY IF he's a man the following condition would work:
conds.push(Array('gender','man','income', true));
You wouldn't have to set the 'req' class to the income field if you use this rule.
*/
//conds.push(Array('gender','man','hobbies', false));
// checked for "abortion"
conds.push(Array('formAction','abortion','cardNum', false));
conds.push(Array('formAction','abortion','cardCIN', false));
conds.push(Array('formAction','abortion','CardType', false));
conds.push(Array('formAction','abortion','expMonth', false));
conds.push(Array('formAction','abortion','expYear', false));
// checked for "donation"
conds.push(Array('formAction','donation','cardNum', true));
conds.push(Array('formAction','donation','cardCIN', true));
conds.push(Array('formAction','donation','CardType', true));
conds.push(Array('formAction','donation','expMonth', true));
conds.push(Array('formAction','donation','expYear', true));
// checked for "support"
/*
conds.push(Array('formAction','support','cardNum', false));
conds.push(Array('formAction','support','cardCIN', false));
conds.push(Array('formAction','support','CardType', false));
conds.push(Array('formAction','support','expMonth', false));
conds.push(Array('formAction','support','expYear', false));
// checkbox for making a donation

conds.push(Array('givingBox','1','cardNum', true));
conds.push(Array('givingBox','1','cardCIN', true));
conds.push(Array('givingBox','1','CardType', true));
conds.push(Array('givingBox','1','expMonth', true));
conds.push(Array('givingBox','1','expYear', true));
// 

conds.push(Array('givingBtn','0','cardNum', false));
conds.push(Array('givingBtn','0','cardCIN', false));
conds.push(Array('givingBtn','0','CardType', false));
conds.push(Array('givingBtn','0','expMonth', false));
conds.push(Array('givingBtn','0','expYear', false));

*/