//Clase hija

var Auto = Vehiculo.extend
({
	nombre: 'Auto',
	encender: function()
	{

		this.parent();
		this.acelerar();
	},
	acelerar:function()

	{
		alert(this.getNombre() + ' esta acelerando!');
	}

});