function dom_init() {

$.backstretch("/wp-content/themes/luckhardt/img/back.jpg");

$('nav > ul > li').hover(function(){
  $(this).find('ul').slideDown(200);
}, function(){
  $(this).find('ul').slideUp(200);
});
$('nav > ul > li > a').focus(function(){
  $(this).next().slideDown(200);
});

$('#main, header').click(function(){
  $('nav ul ul').slideUp(200);
});

$('#imp1 a:first-child').addClass('active').show();
setInterval(changeimage,6000);
}



function changeimage(){
  if ($('#imp1 .active').next().length == 1) {
    $('#imp1 .active').removeClass('active').fadeOut(1000).next().addClass('active').fadeIn(1000);
  } else {
    $('#imp1 .active').removeClass('active').fadeOut(1000);
    $('#imp1 a:first-child').addClass('active').fadeIn(1000);
  }
}
