jQuery(document).ready(function(){
    jQuery("#tweet").tweet();
	//jQuery("ul.menu > li:hover").addClass('act');
	
	//Change the menu case
	jQuery("div.footer li a").each(function(index, obj){
		var str = jQuery(obj).html();
		//jQuery(obj).html(str.slice(0,1).toUpperCase() + str.slice(1).toLowerCase());		
		jQuery(obj).html(str.toUpperCase());
	});	
});
