$(document).ready(function(){
		$("#more #showmore").mouseover(function () {
			$(this).css({"background-color":"#777777"});
		});
		$("#more #showmore").mouseout(function () {
			$(this).css({"background-color":"#444444"});
		});
		$("#more #showmore").click(function () {
			$("#more").fadeOut("fast",function() {
				$.ajax({
					type: "GET",
					url: "get.php",
					data: "page=news&amp;start=3",
					success: function(data){
						$("#more").html(data);
						$("#more").fadeIn("fast");
					}
				});
			});
		});
	});