$(document).ready(function() {
	
//neat doc and pdf links

$('#content a[href$=".pdf"]').after("&nbsp;<i>[PDF]</i>").addClass('pdf');
$('#content a[href$=".doc"]').after("&nbsp;<i>[MS-Word]</i>").addClass('word');

//cannot add this attribute in textile

$('#content .col table').attr('cellspacing', 0); 

// semi-safe e-mail links + mail icon

$('#content .mail').each(function(index) {
	$(this).replaceWith("<a class=\"e-maillink\" href=\"mailto:"+$(this).text()+"@koninklijkeballetschool.be\""+">"+$(this).text()+"@koninklijkeballetschool.be"+"</a>");
	
});

$('#nav li:first-child a').css({borderTop: 'none'});
});
