jQuery(document).ready(function($){

var lists = $('ul');
$.each(lists, function() { 
$(this).parent("li").children('a').addClass('pil');

});



$('.sub-menu').hover(function(){
$(this).parent('li').children('a').addClass('le_hover');
  }, 
  function () {
$(this).parent('li').children('a').removeClass('le_hover');
  }
);



$('#kate_bilds img:first').show();
 
$("#kates li").hover(function(){
$('.img_hold').data('nivoslider').stop();
//$('#slider').data('nivoslider').start();
var class_id = $(this).attr('id');
var number = class_id.match(/[\d\.]+/g);
var the_bild = '.bild_'+number[0];
$('#kate_bilds img').hide();

if($(the_bild).length > 0){
$(the_bild).show();
$('.img_hold').hide();
}
}, 
  function () {
$('.img_hold').show();
$('.img_hold').data('nivoslider').start();
  }
);





$('.img_hold').nivoSlider({
effect  : 'fade',
directionNav: false,
controlNav:false
});


});
