$(document).ready(function(){
    if ($("div#info a.h").length > 0)
	setTimeout("newsch();",1000);

    $(".headpics").mousemove(function(e){
	var a = ($(".headpicsb").width()-$(".headpics").width()) / $(".headpics").width();
        var x = e.pageX - this.offsetLeft;
        var y = e.pageY - this.offsetTop;
        $(".headpicsb").css("left",-Math.floor(x*a)+"px");
    });

    $("img").each(function(index){
	if ($(this).attr("src").length>40){
	    if ($(this).attr("src").substr(0,62)=="../../../../include/dataeditor/inputs/formatedtext/js/plugins/")
		$(this).attr("src","images/"+$(this).attr("src").substr(62));
	}
    });

});

var newsi=1;
var t;
function newsch(){
    $("#info a:visible").fadeOut(500, function(){
 	$("#info a[rel="+newsi+"]").fadeIn(500, function(){
	    newsi++;
	    if (newsi==maxni) newsi = 0;
	    setTimeout("newsch();",4000);
	});
    });
}
