/**
 * @author Andreas Pihlström
 * @desc Layout fClone Theme
 * @version 1.0

 */
jQuery.fn.fClone = function() {

	
	
		for (i=0;i<100;i++) {
			$("#path:contains(' / ')").each(function(){
			      $(this).html($(this).html().replace(" / ", ""));
			});
			$("#path:contains('suprb.com')").each(function(){
			      $(this).html($(this).html().replace("suprb.com", ""));
			});
			$("#path:contains('www.suprb.com')").each(function(){
				  $(this).html($(this).html().replace("www.suprb.com", ""));
			});
		}	
		var lastActive = $("#path a:last").html();
		$("#path a:last").html("<b>"+lastActive+"</b>");

		var n = $("#list").text();
		if (n == "") {
			$("#list").html("");
			}	

		var c = $("#tags").html();
		if (c != "") {
			$("#tags").html("Tags: "+c).css("padding-bottom","10px");
			}	

		$('#path a').each(
			function() {
				$(this).before($("<br />"));
				}
			);

	};