/* jQuery scripts voor terpsichore.be */

$(document).ready(function() {
	// table enhancements
	$('#rooster table tr td ul li:nth-child(2)').css({'font-weight': 'bold', 'color': '#000'});
	$('#rooster table tr:even td').css("background-color", "#fff");
	
	//form validation
	$('#terp_contact').validate();
	
	//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');

	
}); //closing line