// JavaScript Document
var news_n=10;
var news_height=45;
var margin=15;
var new_H=news_n*news_height;
function slide()
{
	pos=0;
	time=34900;
	$(".news_listing").show(10).animate({marginTop:-400},34900).hide(10).animate({marginTop:0},80);
	$(".news_listing").mouseover( function (){
		$(this).stop(true,false);
		pos=parseInt($(this).css("margin-top"));
		time=parseInt(((pos+400)/400)*34900);
											 });
	$(".news_listing").mouseout( function (){
		$(this).css("margin-top",""+pos);
		$(this).show(10).animate({marginTop:-400},time).hide(10).animate({marginTop:0},80);
		time=34900;
										   });
}

$(document).ready(function()
{
$(".news_listing").css({paddingBottom: "0px"});	
slide();
var interval= setInterval("slide()",35000);
});