$(function() {
    // Animated hover effect on boxen
    $("#boxen .box").hover(function() {
        $(this).filter(':not(:animated)').animate({ backgroundColor: "#F60E08" }, 500).addClass("active");
        $(this).siblings().removeClass("active");
    },function() {
        $(this).animate({ backgroundColor: "#E6E7E9" }, 250).removeClass("active");
        $(this).siblings().removeClass("active");
    });
});

// Odbori

function showCounty(countyName) {
	$('#odbor').children().remove();
	$(countyName).clone().appendTo('#odbor');
}

// Opstine

$(function() {
  $("select#opstina").change(function () {
      var str = "";
      $("select option:selected").each(function () {
          str += $(this).attr('value');
      });
      showCounty("#" + str);
    })
});

// Gradovi

$(function() {
	$("#gradovi a").click(function () {
		showCounty($(this).attr('href'));
	     return false;
	});
});

// Slike
$(window).load(function() {
	$("img.attachment-thumb").pixastic("desaturate");
});

