$(document).ready(function() {

$("#popular ul li:last").css("border-bottom","0").css("margin-bottom","0");
$("#recent_comments ul li:last").css("border-bottom","0").css("margin-bottom","0");
$("#comments ol li:last").css("border-bottom","0");
$("#related ul li:last a").css("border-bottom","0");

var searchbox = $("#search input[name='s']");
	
if(searchbox.val() == ""){
	searchbox.val("Enter your keywords...");
};

	searchbox.focus(function() {
		if($(this).val() == "Enter your keywords..."){
			$(this).val("");
		}
		});

	searchbox.blur(function() {
		if($(this).val() == ""){
			$(this).val("Enter your keywords...");
		}
		});
		
});