function initBandDescriptions() {
	$('span.band-desc').qtip({
      content: {
         text: false // Use each elements title attribute
      },
		position: {
                  corner: {
                     tooltip: "topMiddle", // Use the corner...
                     target: "bottomMiddle" // ...and opposite corner
                  }
               },
	  style: {
                  border: {
                     width: 5,
                     radius: 10
                  },
				  width: {
				  	min: 0,
					max: 600
				  },
                  padding: 10, 
                  tip: true, // Give it a speech bubble tip with automatic corner detection
                  name: 'dark' // Style it according to the preset 'cream' style
               }

//      style: 'cream' // Give it some style
   });

}

function openPopupLink(resource) {
	window.open (resource,"bandMedia","resizable=1,width=350,height=250,toolbars=0,location=0"); 
}
function openPopupLinkLarge(resource) {
	window.open (resource,"songList","resizable=1,width=800,height=600,toolbars=0,location=0,scrollbars=1"); 
}
function openPopupLinkVenu(resource) {
	window.open (resource,"venu","resizable=1,width=800,height=600,toolbars=0,location=0,scrollbars=1"); 
}
function openPopupLinkDirections(resource) {
	window.open (resource,"directions","resizable=1,width=800,height=600,toolbars=0,location=0,scrollbars=1"); 
}
$(document).ready(function() {initBandDescriptions()});



