google.setOnLoadCallback(function() {
	$('.button').button();
	
	$('ul#comments_list li').corner();
	
	$('#slogan').bind('mouseenter', function(){
		if($(this).find('#what_is_this').css('display') == 'none'){
			$(this).find('#what_is_this').show("blind", {direction:"vertical"}, 200);
		}
	});
	
	$('#slogan').bind('mouseleave', function(){																 	
		$(this).find('#what_is_this').hide("blind", {direction:"vertical"}, 200);
	});
});
