getTwitters('tweet', { 
  id: 'ScottishUPA', 
  enableLinks: false, 
  template: '"%text%" <br /><a href="http://twitter.com/%user_screen_name%/statuses/%id%/">%time%</a>',
	clearContents: true, 
	count: 1, 
	withFriends: false,
	ignoreReplies: true
});

$(document).ready(function(){
													 
	//lightbox
	//$("a[rel^='lightbox']").slimbox({/* Put custom options here */}, null, function(el){return (this == el) || ((this.rel.length > 8) && (this.rel == el.rel));});
	
	//hide notifications after a few seconds
	setTimeout(function(){ $('.jhide').slideUp('fast'); }, 5000);
	setTimeout(function(){ $('.jhide2').slideUp('fast'); }, 10000);

	//table rows
	$('table tr:even').addClass('even');
	$('table tr:odd').addClass('odd');

});