if (typeof($) != 'undefined') {
	$(document).ready(function(){
		
		//$(".imgfici").wrap('<div class="fici"></div>');
		$(".fici").append('<div class="tl"></div><div class="tr"></div><div class="bl"></div><div class="br"></div>');
		
		/*
		$(".imgfici").each(function () {
			//make imgfici surrounding div the same height and width as image
			var parent = $(this).parent().get(0);
			parent.style.height = $(this).height() + 'px';
			parent.style.width = $(this).width() + 'px';
		});
		*/
		
	});
}

