﻿Made = {};

Made.init = function()
{
	// Update the permalink ok the [...]
	if($(".intropost") != null){
		$(".intropost").each(this.setMoreInfoLink);

	}
}
Made.setMoreInfoLink = function()
{
	var permalink = $("h3 a", this).attr("href");
	$(".introcontent a", this).attr("href", permalink);
	
	$(".categoryTitle", this).text("[" + $(".categoryTitle a", this).text() + "]");
	$(".categoryTitle a", this).css("display", "none");
	
}

Made.plop = function (){
	return false;
}

$(document).ready(function(){
	Made.init();
});
