$(document).ready(function() {
    $( '.lupe dt a img, .news-single-img a img').each(function(){

        var link = jQuery(this).attr("src").split("&")[0].split("=")[1];

        if (jQuery(this).css('float') == 'right') float = 'floatright';
        else if (jQuery(this).css('float') == 'left') float = 'floatleft';
        else float='';

        jQuery(this).css('float','none')

        jQuery(this).parent().append('<span> </span>');;

    });
});
