function buildWidgets(){
	$('*:contains("{widget:")').each(function(){
						if ($(this).children().length < 1) {
							$(this).css("border", "dotted 1px #e6e6e6");
							var widgetContent = $(this).text();
							var widgetSize = (parseInt(widgetContent.length)-9);
							var wOne = widgetContent.substr(8,widgetSize);
							var widget = $("<div class='widget' widgettype='"+wOne+"'></div>");
							widget.load('/widget/'+wOne);
							widget.bind('unbuild', function(){
								var ttype= $(this).attr('widgettype');
								$(this).parent().append("{widget:"+ttype+"}");
								$(this).remove();
							});

							$(this).html('').append(widget);

						}
						}); 
	
}

function afterloadWidgets(){
	$(".buttonWidget").click(function(){
		window.location = $(this).attr('href');
	}).mouseover(function(){
		$(this).css({
			"background-color":"#16879e",
			"color":"#000000",
			"border" : "1px dotted #000000"
		});
	}).mouseout(function(){
		$(this).css({
			"background-color":"#ffffff",
			"color":"#434343",
			"border" : "1px dotted #a9a9a9"
		});
	});

}


$(function() {
	buildWidgets();
	
});
 
