﻿function mainmenu() {
  $("#menu ul").css({display: "none"}); // Opera Fix
  $("#menu li").hover(function() {
    $(this).find('ul:first').css({visibility: "visible", display: "none"}).fadeIn(300);
	},function() {
	  $(this).find('ul:first').css({visibility: "hidden"}).fadeOut(300);
	});
}

$(document).ready(function() {  
  mainmenu();
});

$(function() {
    $('#slideshow').cycle({
        
    timeout:       3500,  // milliseconds between slide transitions (0 to disable auto advance) 
    speed:        1000,  // speed of the transition (any valid fx speed value) 
    pause:         0   // true to enable "pause on hover" 
    });
});
