function fnOver($id,$color) {
	$("#"+$id).css("background-color",$color);
}

function fnOut($id,$color) {
	$("#"+$id).css("background",$color);
}

function fnBackgroundWhite($id) {
	$("#"+$id).css("background-color","#fff");
}

function fnBackgroundGrey($id) {
	$("#"+$id).css("background-color","#eee");
}

function fnShowDiv($sId) {
	$("#"+$sId).toggle("slow");
}

function fnSendComment() {
	var $div = $("#comments_form");
	// sprawdznie czy wypelniono pola formularza
	var $author=$("#bc_author").val();
	var $text=$("#bc_text").val();
	if(($author=='') || ($text=='')) {
		alert('Nie wypelniono wymaganych pol formularza.');	
	}
	else {
	$.ajax({
		type: "POST",
		url: "some.php",
		data: "name=John&location=Boston",
		success: function(msg){
			alert( "Data Saved: " + msg );
		}
	});
	}
}