(function(){
	$(document).ready(function(){
		$(".SocialMedia")
			.bookmark({
				sites: ['facebook', 'twitter', 'delicious', 'digg', 'meneame', 'technorati', 'wikio', 'yahoo'],
				hint: "Enviar a {s}"
			})
			.addClass("clearfix")
		;
	});
}(jQuery))

function _alert(msg){
	var $ = jQuery;
	var e = $("#__DG_ALERT__");
	if(e.length == 0){
		e = $("<div>")
			.attr("id", "__DG_ALERT__")
			.appendTo("body")
			.hide(0)
		;
	}
	
	var aTime = 300;
	var timeout = msg.length * 200 + aTime;
	
	e.text(msg);
	setTimeout(function(){e.fadeOut(aTime);}, timeout);
	e.fadeIn(aTime);
}
