
$(document).ready(function(){
	$('#buttons td .rol img').width(64).height(64);
	$('#buttons td .rol').css('opacity',0);
	$('#buttons td').hover(
		function(){
			if($(this).data('active')) return;
			$(this).data('active',1);
			$(this).find('.rol').animate({left:0,opacity:1},200);
			$(this).find('.rol img').animate({width:104,height:104},200);
 			$(this).find('.img').fadeOut(200);
		},
		function(){
			if(!$(this).data('active')) return;
			$(this).find('.rol').animate({left:26,opacity:0},200);
			$(this).find('.rol img').animate({width:64,height:64},200);
 			$(this).find('.img').fadeIn(210,function(){$(this).parent().parent().data('active',false)});
		}
	);
});

