$(document).ready(function()
{
  
  $(".menu ul li").hover(
    function () {
      $(this).children(".menu ul li ul").fadeIn(500);
    },
    function () {
	  $(this).children(".menu ul li ul").fadeOut(500);
  });
  
  $("a[rel='colorbox']").colorbox();

});
