function showKraj(krajId){
	jQuery('.select-box .select-item').hide();
	jQuery('#select-kraj').val(krajId);
	jQuery('#item-'+krajId).fadeIn();
	location.hash = krajId;	
};
jQuery(document).ready(function(){
	var selectorBox = jQuery('#selector-box').eq(0);
	
	jQuery('.select-box .select-item').each(function(i, elem){
		selectorBox.append(
			jQuery('<option></option>')
			.text(jQuery('.header', elem).html())
			.attr('value', elem.id.match(/item-(\d+)/)[1])
		);
	});
	
	selectorBox.wrapInner(jQuery('<select></select>').attr('name','kraj').attr('id', 'select-kraj'));
	jQuery('#select-kraj').change(function(e){
		showKraj(jQuery(this).val());
	});
	
	if (location.hash && location.hash.match(/\d+/))
		jQuery('#select-kraj').val(parseInt(location.hash.match(/(\d+)/)[1]));
	
	jQuery('#select-kraj').change();	
});

