ayuda Urgente con administracion de sistema de noticias con imagen

ncesito hacer con urgencia un sistema de noticia con imagen con un panel de control tome como modelo un scoll de jquery papa poderlo anexar a una base de datos pero no me lee deacuerdo como lo necesito solo se queda en la ultima entrada haver si me pueden ayudar... aca les dejo el codigo fuente de lo q avance

<?php require_once('Connections/noticia.php'); ?>
<?php
if (!function_exists("GetSQLValueString")) {
function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
{
if (PHP_VERSION < 6) {
$theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;
}

$theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);

switch ($theType) {
case "text":
$theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
break;
case "long":
case "int":
$theValue = ($theValue != "") ? intval($theValue) : "NULL";
break;
case "double":
$theValue = ($theValue != "") ? doubleval($theValue) : "NULL";
break;
case "date":
$theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
break;
case "defined":
$theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
break;
}
return $theValue;
}
}

$maxRows_noticia = 4;
$pageNum_noticia = 0;
if (isset($_GET['pageNum_noticia'])) {
$pageNum_noticia = $_GET['pageNum_noticia'];
}
$startRow_noticia = $pageNum_noticia * $maxRows_noticia;

mysql_select_db($database_noticia, $noticia);
$query_noticia = "SELECT * FROM nueva_noticia ORDER BY id_noticia DESC";
$query_limit_noticia = sprintf("%s LIMIT %d, %d", $query_noticia, $startRow_noticia, $maxRows_noticia);
$noticia = mysql_query($query_limit_noticia, $noticia) or die(mysql_error());
$row_noticia = mysql_fetch_assoc($noticia);

if (isset($_GET['totalRows_noticia'])) {
$totalRows_noticia = $_GET['totalRows_noticia'];
} else {
$all_noticia = mysql_query($query_noticia);
$totalRows_noticia = mysql_num_rows($all_noticia);
}
$totalPages_noticia = ceil($totalRows_noticia/$maxRows_noticia)-1;
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" dir="ltr">
<head profile="http://gmpg.org/xfn/11">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Featured Content Slider Using jQuery - Web Developer Plus Demos</title>
<link rel="stylesheet" type="text/css" href="style.css" />
<script type="text/javascript" src="jquery.min.js" ></script>
<script type="text/javascript" src="jquery-ui.min.js" ></script>
<script type="text/javascript">
$(document).ready(function(){
$("#featured > ul").tabs({fx:{opacity: "toggle"}}).tabs("rotate", 5000, true);
});
</script>
<style type="text/css">
body {
margin-left: 0px;
margin-top: 0px;
margin-right: 0px;
margin-bottom: 0px;
background-color: #000;
}
.h {
color: #0F0;
}
</style>
</head>
<body>
<div id="featured" >
<ul class="ui-tabs-nav">
<?php do { ?>
<li class="ui-tabs-nav-item ui-tabs-selected" id="nav-fragment-1"><a href="#fragment-1"><img src="images/image1-small.jpg" alt=""/><span><?php echo $row_noticia['Titulo']; ?></span></a><li class="ui-tabs-nav-item" id="nav-fragment-2"></li></li>

<?php } while ($row_noticia = mysql_fetch_assoc($noticia)); ?>
<li class="ui-tabs-nav-item" id="nav-fragment-2"></li>
<li class="ui-tabs-nav-item" id="nav-fragment-3"></li>
<li class="ui-tabs-nav-item" id="nav-fragment-4"></li>
</ul>

<!-- First Content -->
<div id="fragment-1" class="ui-tabs-panel" style="">
<img src="images/image1.jpg" alt="" />
<div class="info" >
<h2><a href="noticia.php?idrecord=31" ><?php echo $row_noticia['Titulo']; ?></a></h2>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla tincidunt condimentum lacus. Pellentesque ut diam....<a href="#" >read more</a></p>
</div>
</div>

<!-- Second Content -->
<div id="fragment-2" class="ui-tabs-panel ui-tabs-hide" style="">
<img src="images/image2.jpg" alt="" />
<div class="info" >
<h2><a href="#" >20 Beautiful Long Exposure Photographs</a></h2>
<p>Vestibulum leo quam, accumsan nec porttitor a, euismod ac tortor. Sed ipsum lorem, sagittis non egestas id, suscipit....<a href="#" >read more</a></p>
</div>
</div>

<!-- Third Content -->
<div id="fragment-3" class="ui-tabs-panel ui-tabs-hide" style="">
<img src="images/image3.jpg" alt="" />
<div class="info" >
<h2><a href="#" >35 Amazing Logo Designs</a></h2>
<p>liquam erat volutpat. Proin id volutpat nisi. Nulla facilisi. Curabitur facilisis sollicitudin ornare....<a href="#" >read more</a></p>
</div>
</div>

<!-- Fourth Content -->
<div id="fragment-4" class="ui-tabs-panel ui-tabs-hide" style="">
<img src="images/image4.jpg" alt="" />
<div class="info" >
<h2><a href="#" >Create a Vintage Photograph in Photoshop</a></h2>
<p>Quisque sed orci ut lacus viverra interdum ornare sed est. Donec porta, erat eu pretium luctus, leo augue sodales....<a href="#" >read more</a></p>
</div>
</div>
</div>
</body>
</html>
<?php
mysql_free_result($noticia);
?>