$(document).ready(function() {
 $("div.tx_news_box").each(function(i) {
   $(this).mouseover(function() {
    $(this).css("background-image", "url(fileadmin/img/layout/news_active_box_hover.jpg)");
    $(this).css("background-repeat", "no-repeat");
    $(this).css("background-position", "center 5px");
    $(this).attr("id", "ative");
    var order = $(this).attr("order");
    var fadeto = -(order * 700) + 700;
    $("#container").animate({"margin-left": fadeto}, "slow");
   });
 });
 $("div.tx_news_box").each(function(i) {
   $(this).mouseout(function() {
    $(this).css("background-image", "none");
    $(this).attr("id", "" );
   });
 });
});
