$(document).ready(function() {
	
	$('#navigation ul li').hover(
		function(){
			$(this).find('.dd').show();
		}, 
		function(){
			$(this).find('.dd').hide();
		}
	);
	 
	 $(".tweet").tweet({
			username: "inkprgroup",
			count: 3,
			loading_text: "loading tweets..."
		  });	
});
