(function($){
	
	var options = {
		x1: 10,
		x2: 10,
		y1: 10,
		y2: 10
	};
	
	$.fn.nine = function(x1,x2,y1,y2) {
		return this.each(function() {
			if(!x1){
				x1 = options.x1;
			}
			if(!x2){
				x2 = options.x2;
			}
			if(!y1){
				y1 = options.y1;
			}
			if(!x2){
				y2 = options.y2;
			}
			
			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+"_"+x1+"_"+x2+"_"+y1+"_"+y2+"."+type;
			
			url = url.replace('"',"");
			url = url.replace("'","");
			url = url.replace("rcmc/","");
			url = url.replace("movieclubstaging/","");
			url = url.replace("movieclub/","");
			
			url = 'url("'+url+'")';
			
			$(this).css('background-image',url);
		});
	};
})( jQuery );

