$(document).ready(function() {
	twttr.anywhere(function(twitter) {twitter.hovercards();});
	
	$.ga.load("UA-374846-1");
	
	$('#main').center();
	$(window).bind('resize', function() { $('#main').center(); });
	
	$('#link a').html('topRight').qtip({
				   content: 'test',
	               show: {
				      ready: true
				   },
				   position: {
				      corner: {
				         target: 'topRight',
				         tooltip: 'bottomLeft'
				      }
				   },
				   style: {
				       border: {
				       		width: 5,
				           	radius: 10
				       },
				       padding: 10, 
				       textAlign: 'center',
				       tip: true, // Give it a speech bubble tip with automatic corner detection
				       name: 'cream' // Style it according to the preset 'cream' style
				   }
	            });
 });
