// JavaScript Document
$(function (){
	
	// Load twitterfeeds
	function LoadTweets() {
		if ($('#tweets').length) {
			$("#tweets .tweets").getTwitter({
				userName: "jciddd",
				numTweets: 2,
				loaderText: "Tweets laden...",
				slideIn: true,
				slideDuration: 750,
				showHeading: false,
				headingText: "Laatste Tweets",
				showProfileLink: true,
				showTimestamp: false
			})
		}	
	}

	LoadTweets();

	$('table.photos td a:first-child').lightBox({fixedNavigation:true});

	$('#content form table th:contains("facebook")').append('<span class="facebook icon"></span>');
	$('#content form table th:contains("linkedin")').append('<span class="linkedin icon"></span>');
	$('#content form table th:contains("hyves")').append('<span class="hyves icon"></span>');
	$('#content form table th:contains("twitter")').append('<span class="twitter icon"></span>');
			
});
