jQuery(document).ready(function(){
	// Pre-initaliazion
	//jQuery('#booktourForm_w43').addClass('hidden');
	//jQuery('#booktourForm_w45').addClass('hidden');

	// Add special class to radio buttons NO
	jQuery(".tourcancellationinsurance + li").addClass('radioButtonNo okvir3');
	jQuery(".motorcycleinsurance + li").addClass('radioButtonNo okvir2');
	jQuery(".gpsnavigation + li").addClass('radioButtonNo okvir2');
	jQuery(".ownandrideamotorcycler + li").addClass('radioButtonNo');
	
	jQuery("#dateofbirth, #passengerdateofbirth, #tourenddate, #tourstartdate").bind("click", function(e){
		if (jQuery(this).val() == 'dd.mm.yyyy') {
			jQuery(this).val('');
		}		
	});
	
	
	// Shown text HTML if clicked on yes
	/*
	jQuery('input[name=motorcycleinsurance]').each(function(){
		jQuery(this).click(function() {
			if (jQuery(this).val() == 'yes' && jQuery(this).get(0).checked) {
				jQuery('#booktourForm_w43').addClass('hidden');
			} else {
				jQuery('#booktourForm_w43').removeClass('hidden');
			}
		});
	});*/

	/*
	jQuery('input[name=gpsnavigation]').each(function(){
		jQuery(this).click(function() {
			if (jQuery(this).val() == 'yes' && jQuery(this).get(0).checked) {
				jQuery('#booktourForm_w45').addClass('hidden');
			} else {
				jQuery('#booktourForm_w45').removeClass('hidden');
			}
		});
	});*/
});
