/*
* NomineeMarker Class
*/

/* Constructor */
function NomineeMarker(latlng, options){
    this.entry_id = options.entry_id;
	this.project_name = options.project_name;
	
	options.position = latlng;
	options.map = map;    
    this.setValues(options);
}


/* It's a limitation of JavaScript inheritance that we can't conveniently
   extend GMarker without having to run its constructor. In order for the
   constructor to run, it requires some dummy GLatLng. */
NomineeMarker.prototype = new google.maps.Marker;
