$(document).ready(function() {
  $('#county_id').change(function() {
    var element = $(this);
    
    $('#city_id').load('/school/loadCity', 
      {id: element.val()},
      function() {
        $('#city_id').parent().removeClass('loading');
      }
    );
    
    $('#city_id').parent().addClass('loading');
  });
  
  $('select#discipline_profile').change(function() {
    var element = $(this);
    
    $('#discipline_id').load('/school/loadDiscipline', 
      {id: element.val()},
      function() {
        $('#discipline_id').parent().removeClass('loading');
      }
    );
    
    $('#discipline_id').parent().addClass('loading');
  });
  
  $('.favorite').click(function() {
    var favorites = $.cookie('favorites');
    if(!favorites) 
      favorites = {};
    else
      favorites = $.evalJSON(favorites);

    favorites[$(this).val()] = $(this).attr('checked')
    
    $.cookie('favorites', $.toJSON(favorites), {path: '/', domain: '.admitereliceu.ro'});
  })
  
  if($.cookie('favorites'))
  {
    $.each($.evalJSON($.cookie('favorites')), function(id, selected) {
      if(selected) $('input[value='+id+']').attr('checked', true);
    })
  }
})
