$(function() {
	$('#search').focus(function() {
		if (this.value == this.defaultValue) {
			this.value = "";
		}
	});
	$('#search').blur(function() {
		if (this.value == "") {
			this.value = this.defaultValue;
		}
	});

	$('#search-form').submit(function() {
	
		return false;
	});

	$('#left-col .menu-title').click(function() {
		$(this).parent().children('ul').slideToggle("fast");
	});
	$("#menu-container a").hover(function () {
		$(this).animate({
			"padding-bottom": "0.95em",
			"padding-top": "0.95em"
			}, 250).css("color", "#000");
		}, function () {
		$(this).animate({
			"padding-bottom": "0.85em",
			"padding-top": "0.85em"
			}, 250).css("color", "#6d5932");
		});
});

/*

*/
