$(document).ready(function() {
	$(".my_login .frame .row .check .checkbox").click(function(){
		if($(this).attr("checked"))
			$(".my_login .frame .row .check[prop_id="+$(this).attr('prop_id')+"]").css("background","#fbdd88");
		else
			$(".my_login .frame .row .check[prop_id="+$(this).attr('prop_id')+"]").css("background","#f1eeea");
	});
	
	$('.my_login .saved_search .rename_title, .my_login .saved_search .close').click(function(){
		var id = $(this).attr("id");
		$(".saved_search span.message").html("");
		$("#title_div_"+id).slideToggle("slow");
	});
});