//search
$(document).ready(function() {
	$('#s').css({
		'color' : '#EDEDED',
		'font-style' : 'italic'
	}).one('focus', function() {
		var $this = $(this);
		$this.attr('value', '');
		$this.css({
			'color' : '#FFFFFF',
			'font-style' : 'normal',
			'font-weight' : 'bold'
		});
	});
	$("#menu ul").css({ "display" : "none" });
	$("#menu li:has(ul)>a").toggle(function() {
		$(this).next().show("fast");
		return false;
	},function() {
		$(this).next().hide("fast");
		return false;
	});
});

