$(document).ready(function() {
	$('.contact p:last-child').addClass('last');


	// QTip 2
	$('.footer a[title], abbr[title]').qtip({
		style: {
			classes: 'ui-tooltip-dark ui-tooltip-shadow ui-tooltip-rounded'
		},
		position: {
			at: 'left center',
			my: 'right center'
		}
	})

	// Level list
	$('.levels li ul').hide();
	$('.levels li span.more').click(function(){
		if ($(this).next('ul').is(':hidden')) {
			$(this).html('-');    
		} else {
			$(this).html('+');    
		}
		$(this).next('ul').slideToggle();
	});	

	// Twitter
	$(".tweet").tweet({
		username: "ernestograf",
		join_text: "auto",
		avatar_size: 0,
		count: 4,
		template: "{text} - {time}",
		loading_text: "cargando tweets..."
	});

});


$(window).load(function() {
	
	// Tabs
	$.featureList(
		$("#tabs li a"),$("#output li"), {start_item: 0}
	);

});
