$(document).ready(function() {
	$("#menu-nav li a").hover(function () {
		$(this).animate({
			"marginTop": (5)
		},200);
	},function() {
		$(this).animate({
			"marginTop": 0
		},200)
	});
});

function showTwitter(twitters) {
	var statusHTML = [];
	for (var i=0; i<twitters.length; i++){
		var username = twitters[i].user.screen_name;
		var statusT = twitters[i].text.replace(/((https?|s?ftp|ssh)\:\/\/[^"\s\<\>]*[^.,;'">\:\s\<\>\)\]\!])/g, function(url) {
			return '<a href="'+url+'">'+url+'</a>';
		}).replace(/\B@([_a-z0-9]+)/ig, function(reply) {
			return  reply.charAt(0)+'<a href="http://twitter.com/'+reply.substring(1)+'">'+reply.substring(1)+'</a>';
		});
		statusHTML.push('<span class="status">'+statusT+'</span>');
	}
	document.getElementById('twitter-details').style.background = 'none';
	document.getElementById('twitter-details').innerHTML = statusHTML.join('');
}

