$(document).ready(function()
{
	$("img.caption_easy").each(function(i) 
	{
		var captiontext = $(this).attr('title');
		$(this).wrap("<div class='imgpost'></div>");
		$(this).parent().append("<div class='easy'>" + captiontext + "</div>");
	});

	$("img.caption_catalogue").each(function(i) 
	{
		var captiontext = $(this).attr('title');
		$(this).wrap("<div class='imgpost'></div>");
		$(this).parent().append("<div class='catalogue'>" + captiontext + "</div>");
	});

	$("img.caption_webshop").each(function(i) 
	{
		var captiontext = $(this).attr('title');
		$(this).wrap("<div class='imgpost'></div>");
		$(this).parent().append("<div class='webshop'>" + captiontext + "</div>");
	});

	$("img.caption_portal").each(function(i) 
	{
		var captiontext = $(this).attr('title');
		$(this).wrap("<div class='imgpost'></div>");
		$(this).parent().append("<div class='portal'>" + captiontext + "</div>");
	});

	$("img.caption_intranet").each(function(i) 
	{
		var captiontext = $(this).attr('title');
		$(this).wrap("<div class='imgpost'></div>");
		$(this).parent().append("<div class='intranet'>" + captiontext + "</div>");
	});
});