/**
 * @author sandy trinh
 */

//Create new class Breed
function Breed () {
	
	/* obj variables */
	var name = '';
	var id = '';
	var description = '';
	var idealOwner = '';
	var image = '';
	this.init = init;
		
	function init(name, id){
		this.name = name;
		this.id = id;		
	}
}	