$(document).ready(function() {
	$("#napravisajtForma").validate({
		rules: {
			q0_Ime: {
				required: true
			},
			q1_Prezime: {
				required: true
			},

			q2_Email: {
				required: true,
				email: true
			},
			q10_Kontakttelefon: {
				required: true,
				digits: true
			},
			q36_AdresaWEBsajta: {
				required: true
			}
		},
		messages: {
			q0_Ime: {
				required: "Unesite Vaše ime"
			},
			q1_Prezime: {
				required: "Unesite Vaše prezime"
			},
					q36_AdresaWEBsajta: "Unesite Vase ime",
			q2_Email: "Unesite ispravan email",
			q10_Kontakttelefon: "Unesite broj telefona bez razmaka"
		}
	});
});

//
// HOW TO ADD NEW COLOR TO THE TABLE:
// 1. Add the table ceel in the same format as existing cells
// 2. Add the new color to the colors array below. ORDER IS IMPORTANT (first row colors, second row colors etc.)

function m5ColorClicked(obj_cell, color, collection_name, output_id_name, hidden_id_name)
{
	//	alert( 'clicked' );
	colors = new Array('tamno crvena','crvena','tamno narandzasta','narandzasta','zuta','limun zuta','alien zelena','lime zelena','zelena','tamno zelena','aquamarin','tamna aquamarin','cyan plava','baby plava','royal plava','plava','crna','tamno siva','siva','srebrna siva','svetlo siva','bela','braon','zlatno braon','maroon','violet crvena','fuschia','violet','purple','violet plava','slate plava','navy plava');
	number_of_cells = colors.length;
	// CHANGE THE STATE OF THE CELL
	if ($('#'+obj_cell).html().search(/img/i)<0 ) {
		$('#'+obj_cell).html( '<img src="images/order_checked_color.gif" width="14" height="14">' );
	} else {
		//		alert( $('#'+obj_cell).html() );
		$('#'+obj_cell).html('&nbsp;');
	}
	
	// SET THE HIDDEN FIELD WITH COLOR CODES
	// SET THE LABEL WITH DESCRIPTIVE FIELD
	str_hidden_field = "";
	str_label_output = "";

	for (i=1; i<=number_of_cells; i++) {
		//		alert( number_of_cells[i] );
		cell_id = collection_name + '_' + i;
		//		alert( $( '#' + cell_id).html() );
		if ($( '#' + cell_id).html().search(/img/i) >= 0 ) {
			//			alert( 'ovo:"'+$( '#' + cell_id).html()+'"' ); //return;
			if (str_hidden_field == '') {
                str_hidden_field = $( '#' + cell_id).attr('bgcolor');
			} else {
                str_hidden_field = str_hidden_field + ',' + $( '#' + cell_id).attr('bgcolor');
			}
			if (str_label_output == '') {
				str_label_output = colors[i-1];
			} else {
				str_label_output = str_label_output + ', ' + colors[i-1];
			}
		}
	}

	if (str_label_output == '') str_label_output = 'Kliknite na boju da je izaberete!';
	//	alert( ( '#' + output_id_name) + str_label_output );
	$( '#' + output_id_name).html( str_label_output );
	$( '#' + hidden_id_name).val( str_hidden_field );
}

function show_adresa(){
	$('#q36').show();
}
function hide_adresa(){
	$('#q36').hide();
}

