﻿jQuery.fn.extend({
    clearStyles: function() {
        this.removeAttr("style");
    },
    changeSrc: function(newUrl) {
        this.get(0).src = newUrl;
        //alert(this.get());
    }
});