/**
* @author Indev - Internet Development - http://www.indev.nl
* This source may freely be changed and distributed as long as the author tag is visible within the code
*/

(function($) {
	$.fn.extend({
		pngFix: function(options) {
			
			return this.each(function() {

				if($(this).attr('src')) { //We got hourself a picutre.. i think
					
					console.log($(this).width());
				}
				
			});
			
		}
	});
})(jQuery);

