$(document).ready(function(){
	//Fix PNG					   	
	$('div#logo').pngFix( );
	//$('span.mdt').pngFix( );
	
	//$('ul#menu-1 li:first').css({background:'url(/themes/images/giathi/m-1.jpg) 0 0 no-repeat'});
	//$('ul#m1 li:last').css({border:'none'});
	$('.lavaLampWithImage li:last').css({background:'none'});
	$('ul#menu-foot  li:last').css({background:'none'});
	
/*	$(".datepicker").datepicker({
		showOn: 'both',
		buttonImage: '/themes/images/calendar.gif',
		buttonImageOnly: true
	});
*/
	initMenu();
});

function initMenu() {
  $('#menu ul').hide();
  $('#menu ul.active').show();
  $('#menu li a').click(
    function() {
      var checkElement = $(this).next();
      if((checkElement.is('ul')) && (checkElement.is(':visible'))) {
        return false;
        }
      if((checkElement.is('ul')) && (!checkElement.is(':visible'))) {
        $('#menu ul:visible').slideUp('normal');
        checkElement.slideDown('normal');
        return false;
        }
      }
    );
  }

