function PinnedOverlays() {
	var ov = new OverlayCollection('pinned', 27);
	
	//Settings
	ov.useLabels = true;
	ov.labelType = 'Alpha';
	
	//Clear Placemarks
	ov.clearPinnedListings = function(){
		jQuery('pinnedContainer').style.display = 'none';
		var container = jQuery('pinnedContent');
		container.innerHTML = '';
	}
	
	//Show Placemarks
	ov.showPinnedListings = function(){
		this.clearPinnedListings();
		var placemarks = this.getPage(this.currPage);
		if(placemarks.length > 0)
			jQuery('pinnedContainer').style.display = '';
		else
			jQuery('pinnedContainer').style.display = 'none';
		for (var i = 0; i < placemarks.length; i++){
			this.addToPinned(placemarks[i]);
		}
	}
	
	//Add Item to Pinned Display List
	ov.addToPinned = function(placemark){
		var container = jQuery('pinnedContent');
		var d= document.createElement('div');
		d.className = 'pinnedElement';
		d.innerHTML = parsePlacemarkData('<img src="placemark:iconimage" align="left"><a href="javascript:jQuery.fn.svGoogleMaps.goToPlacemark(placemark:prikey)">placemark:name</a>',placemark);
		container.appendChild(d);
	}
	
	ov.getIconStyle = function(){
		return 'pushpin';
	}
	
	return ov;
}
