/**
 * @author Hostis
 */
$(document).ready(function() {
  
  $('.yellow li').hover(function() {
    $(this).children('ul').fadeIn();
  }, function() {
    $(this).children('ul').fadeOut();
  });
  
  $('.imgcontent').hover(function() {
    $('#mainimgtxt').show();
  }, function() {
    $('#mainimgtxt').hide();
  });
  
  $('.top li').hover(function() {
    $(this).children('ul').fadeIn();
  }, function() {
    $(this).children('ul').fadeOut();
  });
  
  $('.blue li a').hover(function() {
    $(this).parent('li').addClass('hover');
  }, function(){
    $(this).parent('li').removeClass('hover');
  });
  
});
