﻿$(document).ready(function(){

/*Butikkoversikt navig-filter*/
$("#townNavig").change(function(){

var selected = $(this).find("option:selected").attr("id");
var selectedName = $(this).val();
var count;

if (selected == "F0") {
$("#shoplist div").show();

count = $("#shoplist div").find("li").length;

} else 
{

$("#shoplist div").hide();
$("."+selected).show();
    count = $("."+selected).find("li").length;
}

$("#status").text("Viser " +count+ " butikk(er) i " + selectedName);

});

/*Bildetekst opplegg*/
var images = $(".article #content div.body img");

images.each(function(){
    $(this).wrap("<div class='image'></div>");
});

var wrappedImages = $(".article #content div.body div.image");

wrappedImages.each(function(){
  var imgtext  = $(this).children('img').attr('alt');
  if(imgtext) {
    $(this).append("<h5><span class='red-bg'>"+imgtext+"</span></h5>");
  }
});

});