function sleep(millis)
{
	var date = new Date();
	var curDate = null;

	do { curDate = new Date(); }
	while(curDate-date < millis);
}

// Set Menu hover events
$(document).ready(function (){
	$('#menu ul li ul').hide();
	$('#menu li').hover(
	      function () {
	        $(this).children('ul').show();
	      }, 
	      function () {
		sleep(200);
	        $(this).children('ul').hide();
	      }
	);
});

// clean search input
$(document).ready(function(){
	var qValue = $('#q').val();
	$('#q').click(
		function () {
			if ($(this).val() == qValue) {
				$(this).val('');
			}
		}
	);
});
