(function($){
	
	
	$.fn.scalecrop = function() {
		return this.each(function() {
			
			var h = $(this).height();
			var w = $(this).width();
			var b = $(this).css('background-image');
			
			b = b.replace('url',"");
			b = b.replace(')',"");
			b = b.replace('"',"");
			b = b.replace("'","");
			b = b.replace('http://',"");
			
			b = b.split("/");
			b.shift();
			b = b.join("/");
			
			
			b = b.split('.');
			
			var type = b[1];
			b = b[0];
			
			var url = b+"_"+w+"_"+h+"."+type;
			
			url = url.replace('"',"");
			url = url.replace("'","");
			
			url = 'url("'+url+'")';
			
			$(this).css('background-image',url);
		});
	};
})( jQuery );

