$(document).ready(clase_botones);
function clase_botones()
{   $(".botones").hover(function(){
	var ancho=$(this).width(); $(this).css("background-position",ancho+'px');},function(){ 
	var ancho=$(this).width();ancho_dos=ancho*2; $(this).css("background-position",ancho_dos+'px'); }); }
	$(document).ready(clase_centrados);
function clase_centrados()
{   if($(".centrados").attr("id")!="" && $(".centrados").attr("id")!=undefined){
		$(".centrados").each(function(i){
			var padre=$("#"+this.id).parent();
			var ancho_padre=padre.width();
			var ancho=$("#"+this.id).width();
			margen=(ancho_padre-ancho)/2;
			padding_izq=padre.css("padding-left");
			padding_der=padre.css("padding-right");	
			if(padding_izq!=undefined && padding_izq!=0){ margen=parseInt(margen)-parseInt(padding_izq); }
			if(padding_der!=undefined && padding_der!=0){ margen=parseInt(margen)+parseInt(padding_der); }
			$("#"+this.id).css("margin-left",margen+"px");});
	}
}