(function($) {

		  

$.fn.superRamka = function(path) {

	

	path=path||'/js/superramka/img_set1';

	var rw=14;//ширина рамки

	var rh=16;//высота рамки

	

	

	return this.each(function() {



	var h = $(this).height();

	var w = $(this).width();

	var src=$(this).attr('src');

	var htm=

 '<div style="width:'+w+'px; height:'+h+'px; background-image:url('+src+'); display:inline-block">'

	+'<table cellpadding="0" cellspacing="0">'

		+'<tr height="'+rh+'">'

			+'<td><img src="'+path+'/tl.png" border="0"></td>'

			+'<td width="100%"><img src="'+path+'/top.png" width="100%" height="'+rh+'"  border="0"></td>'

			+'<td><img src="'+path+'/tr.png" border="0"></td>'

		+'</tr>'

		+'<tr>'

			+'<td height="'+(h-2*rh)+'"><img src="'+path+'/left.png" width="'+rw+'" height="100%" border="0"></td>'

			+'<td></td>'

			+'<td  height="'+(h-2*rh)+'"><img src="'+path+'/right.png" width="'+rw+'" height="100%" border="0"></td>'

		+'</tr>'

		+'<tr height="'+rh+'">'

			+'<td><img src="'+path+'/bl.png" border="0"></td>'

			+'<td><img src="'+path+'/bottom.png" width="100%" height="'+rh+'" border="0"></td>'

			+'<td><img src="'+path+'/br.png" border="0"></td>'

		+'</tr>'

	+'</table>'

+'</div>'

	;

	$(this).replaceWith(htm);

 });



}





})(jQuery);
