﻿$(function() {

  $('#header ul').innerfade({
    speed: 1500,
    timeout: 5000,
    type: 'random',
    containerheight: '304px'
  });

  $('#menu ul li').hover(function() {
    if ($(this).children('ul').length) {
      $(this).children('ul').show();
    }
  }, function() {
    if ($(this).children('ul').length) {
      $(this).children('ul').hide();
    }
  });

  $('a.mens').hover(function() {
    $(this).find('img').stop().fadeTo("slow", 0);
  }, function() {
    $(this).find('img').stop().fadeTo("slow", 1);
  });

  $('a.dier').hover(function() {
    $(this).find('img').stop().fadeTo("slow", 0);
  }, function() {
    $(this).find('img').stop().fadeTo("slow", 1);
  });

  $('a.mensendier').hover(function() {
    $(this).find('img').stop().fadeTo("slow", 0);
  }, function() {
    $(this).find('img').stop().fadeTo("slow", 1);
  });

}); 
