$(document).ready(function(){
	removeEmptyZones();
	setContentWidth();
	setTimeout('setContentWidth();', 1000);
	$(window).resize(function(){
		setContentWidth();
		setTimeout('setContentWidth();', 1000);
	});

	init();
});

/**
 * Init user site
 */
function init()
{
	$("body").css("display", "block");
	
	// initialize categories tree structure
	if ($(".tree").length > 0)
	{
		$(".tree").treeview({
			collapsed: true,
			animated: "medium",
			persist: "location"
		});
	}
}
