$(document).ready(function(){
	var dir = '';
	for(var i =0; i < file_path; i++){
		dir += '../';
	}

	var image = dir + 'common/img/blank.gif';

	$('img.protect').each(function(){
		var img_tag = '<img />';

		$(this).after(img_tag);
		$(this).next('img').attr("src", image);
		$(this).next('img').css("position", "absolute");
		$(this).next('img').css("width",  $(this).width()  + "px");
		$(this).next('img').css("height", $(this).height() + "px");
		$(this).next('img').css("margin-left", "-" + $(this).width() + "px");
		$(this).next('img').css("z-index", 10);
	});

});

