$(document).ready(function() {

	// Last child
	$('.selector li:last-child').addClass('lastChild');

	// First child
	$('.selector li:first-child').addClass('firstChild');

	// Fix the a/img problem
	$(".content img").each(function() {
		var parentTag = $(this).parent().get(0).tagName;
		if (parentTag == 'A') {
			$(this).parent().addClass('linkedImage');
		};
	});

	var width = $('#navigation ul li.selected a').width();
	function coverimage()
	{
		if (width != $('#navigation ul li.selected a').width()) $('#navigation ul li.selected img').css('width', $('#navigation ul li.selected a').width() + 36).css('display', 'block');
		else setTimeout(coverimage, 10);
	}
	setTimeout(coverimage, 10);

	$('#navigation ul li.selected a').css('color', '#004d92'); // kleur van a wordt veranderd

	// Also see http://docs.jquery.com/Selectors for more

});
