jQuery(document).ready(function($) {
	var default_val = "Search Blogs..";
	jQuery('#searchform #s').focus(function() {
		if ($(this).val() == default_val) {
			$(this).val("");
			$(this).css("color", "black");
		}
	}).blur(function() {
		if ($(this).val() == "") {
			$(this).val(default_val);
			$(this).css("color", '#A8A8A8');
		}
	});
});


