$(document).ready(function() {
	$("#s").attr("value", "Search...");

	var text = "Search...";

	$("#s").focus(function() {
		$(this).addClass("active");
		if($(this).attr("value") == text) $(this).attr("value", "");
	});

	$("#s").blur(function() {
		$(this).removeClass("active");
		if($(this).attr("value") == "") $(this).attr("value", text);
	});
	
	$('#menubar li').hover(function() {
  		$(this).children("a").addClass('hover-menu');
	}, function() {
  		$(this).children("a").removeClass('hover-menu');
	});
	
	$('table#projects tbody tr:odd').addClass('odd');
	
});
