$(document).ready(function() {
	$('body').html('<div class="ems"></div><div class="width"><div class="minwidth"><div class="layout"><div class="main-wrapper"><div class="page">'+$('body').html()+'</div></div></div></div></div>');
	$('.box').boxify(false);
	$('.main-pane').boxify(true);
	$('.no-tree').listify('images/templates/leaf.png');
	$('.top-pages').listify('images/templates/leaf.png');
});

$.fn.boxify = function(content){
	
	var 	boxify = ' .boxify ',
		br = '<div class="float-control"></div>',
		top = '<div class="top"></div>',
		top_corners = '<div class="lc"></div><div class="rc"></div>',
		bottom_corners = '<div class="bottom"><div class="lc"></div><div class="rc"></div></div>';
	
	return this.each(function(){
		if(content){ $(this).find('.content').append(br); }else{			 
			$(this).addClass('boxify');
			$(this).find('h3:first').wrap(top);
			$(this).find('.top').prepend(top_corners);
			$(this).append(bottom_corners);
		}
	});
}


$.fn.listify = function(path){
	var 	list_style = '<img src="'+ path +'" class="listify" title="*" />';
	return this.each(function(){
		$(this).find('li').prepend(list_style);
	});
}