function initMenu() {
  var animDuration = 1500;
  /*$('.menu-top ul').hide();*/
  $('.menu-top li a').click(					
    function() {
		$('.menu-current ul').slideToggle('normal');
		$('.menu-current').css('background-color', '#F2F2F2');;
		var href = $(this).attr("href");
		var color = $(this).parent().css("background-color");
		var visib = $(this).next().css("display");
		if (color == 'white' && visib == 'block' || color == '#FFFFFF' && visib == 'block')
		{
		$(this).parent().css('background-color', '#F2F2F2');
		}
		else
		{
		$(this).parent().css('background-color', 'white');
		}
		$(this).next().slideToggle('normal');
		
		setTimeout(function () {
			window.location = href;
			}, animDuration);
		return false;
      }
    );
  }
$(document).ready(function() {
						   initMenu();
						   $('.slideshow').cycle({
						   fx: 'fade',
						   cleartype:  true,
						   cleartypeNoBg:  true,
						   speed:  2500,
						   timeout: 14000
						   });	
						   });

