/**
 * @author Cientista
 * 
 * Dependencies:
 * 	- jQuery 1.4+
 */


(function( $ ){
	
$.fn.xlo_CloseBox = function() {
	$(".boxcontent", this).slideUp();
	$(".boxfooter", this).html("<span class='text center green'>Sucessfull</span>");
};

})( jQuery );

