$(document).ready(function(){
	$('#navlinks ul li').click(function(){
		window.location = $(this).find("a").attr("href");
		return false;
	});
	
	getTwitters('tweets', { 
	  id: 'plesin', 
	  count: 1, 
	  enableLinks: true, 
	  ignoreReplies: true, 
	  clearContents: true,
	  template: '"%text%" <a href="http://twitter.com/%user_screen_name%/statuses/%id%/">%time%</a>'
	});
	
	//syntax highlighter code
	if ( typeof dp != 'undefined') {
		dp.SyntaxHighlighter.ClipboardSwf = '/syntax/clipboard.swf';
		dp.SyntaxHighlighter.HighlightAll('code');	
	}	

});

