$(document).ready(function() {

var searchLabel = $('#searchform label').remove().text();
		$('#s').addClass('placeholder').val(searchLabel)
		.focus(function() {
			if (this.value == searchLabel) {
			$(this).removeClass('placeholder').val('');
		};
		}).blur(function() {
		if (this.value == '') {
			$(this).addClass('placeholder').val(searchLabel);
		};
	});

$("#searchform").submit(function() {
if ($("#s").val() == searchLabel) {
	$("#s").val("");
}
});


$("#content .post:last").css("border-bottom","none");
$(".cross:last").css("background","none");

});

$(document).ready(function(){
	$(".sociable").prepend('<div class="add_to">Add to:</div>');					   
});
