                                                      
			
$(document).ready(function() {   

$('.tts').tipsy({gravity: 'e'});
$('.tt').tipsy({gravity: 's'});

	$('#nav a').hover(function(){
		 $(this).stop().animate({color: "#ff2730"},100);
	},function(){
		 $(this).stop().animate({color: "#fff"},350);
	}); 

	
	
});
