
$(document).ready(function(){
	$("a.lightbox").colorbox({width:'737',transition:'none'});
});

/*

function getTweets(){
 
	$.getJSON("http://twitter.com/statuses/user_timeline.json?screen_name=jorisw&count=20&callback=?&jsoncallback=?", function(data){
		var j = 0; 
        $.each(data, function(i, item) { 
			if(j<5 && item.text.substr(0,1)!="@"){
				$('ul#tweets').append("<li>"+linkify(item.text)+"</li>");
				j++;
			}
        })
      
	});

}

*/

function validateForm(){

	var foo = (15 - 1);

	$('input#captchanum').removeClass('wrong');

	if( document.getElementById('captchanum').value != foo &&
		document.getElementById('captchanum').value != 'veertien' &&
		document.getElementById('captchanum').value != 'fourteen'){
		$('input#captchanum').addClass('wrong');
		return false;
	}
	
	return true;
}


