styling();
labelize();
$(".toggler").each(function (){$("span",this).not("span:first").hide();});
$("object").attr("wmode","transparent");
$('.striped tr:even').addClass('even');



$('input:checkbox','div[id$=_checkbox_group]').change(function (){
	var id = ($(this).parents('div[id$=_checkbox_group]').attr('id')).replace('_checkbox_group','');
	var tmp = new Array();
	$('input:checkbox:checked','#'+id+'_checkbox_group').each(function (){
		tmp.push($(this).val());
	});
	tmp = tmp.join(',');
	$('#'+id).val(tmp);
});
$('input:hidden','div[id$=_checkbox_group]').change(function (){
	var id = $(this).attr('id');
	var val = ($(this).val()).split(',');
	for(var i in val) {
		$('input:checkbox[value='+val[i]+']','#'+id+'_checkbox_group').attr('checked',true);
	}
});

$('#country_id, .country_id').change(function (){
	if($(this).val()=='') {
		$('#city_id option:not(:first)').remove();
		return;
	}	
	
	var city_el = $(this).nextAll('.city_id:first');
	if(city_el.length === 0) city_el = $('#city_id');
		
	$('#loading').center().show();
	$.post('ajax/ajax.php', {country: $(this).val()}, function (data){	
		city_el.html(data);		
		$('#loading').hide();		
	},'html');
});
