$(".pagerLeft ul.yiiPager .previous A").html("");
$(".pagerRight ul.yiiPager .next A").html("");

$(".pagerLeft ul.yiiPager .previous A").addClass("rollover");
$(".pagerRight ul.yiiPager .next A").addClass("rollover");



$("A.rollover").mouseover(
function(){
    img = $(this).css('background-image').replace('_na','_ro');
    $(this).css('background-image',img);
}
).mouseout(
function(){
   img = $(this).css('background-image').replace('_ro','_na');
   $(this).css('background-image',img);
}
);


$(window).load(function(){
        $(".ETweet .tweet_text A").not("[href*=twitter.com]").each(function(){$(this).html("[Link]");});
/*        $(".ETweet A[href*=facebook.com/photo.php]").each(function(){
            //$(this).html("Bild auf Facebook");
            $(this).replaceWith("<img src='http://facebook.com/favicon.ico' />");
        });
        $(".ETweet A[href*=bit.ly]").each(function(){
            //$(this).html("Bild auf Facebook");
            $(this).replaceWith("<img src='http://bit.ly/favicon.ico' />");
        });*/
    }
)

