function animarCompetencias() {
	$('.html').animate({ width: '98%' }, 2100 );
	$('.jquery').animate({ width: '40%'}, 2200);
	$('.photoshop').animate({ width: '88%'}, 2200);
	$('.fireworks').animate({ width: '78%'}, 2000);
	$('.seo').animate({ width: '98%'}, 2400);
	$('.wordpress').animate({ width: '95%'}, 2050);
}

var animated = 0;
	$(window).scroll(function(){
	if (window.pageYOffset >= 200 && animated == 0) {
	animated = 1;
	animarCompetencias();
	}
});
	
$(document).ready(function(){
	$('a[rel=nofollow], a[rel=external], a[rel=me]').attr('target','_blank');
/*	$(".txtfield").each(function(e) {
		$("label").css('display', 'none');
		$(this).attr("value", $(this).prev("label").text());
		$(this).focus(function() {
			if( $(this).prev("label").text() == $(this).attr("value") ) {
				$(this).attr("value", "");
			}
		});
		$(this).blur(function() {
			if( $(this).attr("value") == "" )
				$(this).attr("value", $(this).prev("label").text());
		});
	});
*/	
});
