/**
* jQuery Panther Image replacement
* Version 0.5 - 7/5/2011
* @author GAP
**/
 
(function($){
  var opts;
 
  $.fn.panther = function(options){
    // build main options
    opts = $.extend({}, $.fn.panther.defaults, options);

    return this.each(function(){
        $(this).panther.image_it(this);
    });
  };

 
  $.fn.panther.image_it = function(image_link){
	  	var im = image_link;
		w = im.offsetWidth,
		h = im.offsetHeight;
		im.src = 'http://wrayward.com/_assets/images/athome/kp_egg.png';
		//im.width = w;
		//im.height = h;
  };
  
  $.fn.panther.defaults = {
    width : '500',
    height : '500',
	title : 'Kent Panther'
  };
})(jQuery);

