function initMenu() {
  $('#menu ul').hide();
  $('#menu ul.clicked').show();

  $('#menu li a').click(
    function() {
      var checkElement = $(this).next();
	  
	  if (this.className == 'header') {
		   $('.header').removeClass('expand');
		   $(this).addClass('expand');
	  }

	  if((checkElement.is('ul')) && (checkElement.is(':visible'))) {
		//$('#menu ul:visible').slideUp('normal');
        return false;
        }
		
      if((checkElement.is('ul')) && (!checkElement.is(':visible'))) {
        $('#menu ul:visible').slideUp('normal');
        checkElement.slideDown('normal');

        return false;
       }
     }
   );
 }
  
$(document).ready(
	function() { initMenu(); 	$('#qSearch').focus( function() { if (this.value == 'Type your keyword ...') { this.value = ''; } else { this.select() } } ); } 
);
