$(document).ready(function(){
	// Clickable Logo
	$('.logo').click(function() {document.location.href='/';});
	
	// Colorbox 1.3.5
	$(".colorbox").colorbox({opacity:0.75});
	
	// Tipsy 0.1.7
	$('#tipTextSize').tipsy({
		html: true,
		gravity: 's',
		delayIn: 500,
		delayOut: 1000
	});
});