// JavaScript Document
$(document).ready(function(){

    $('#chooseservicesList-front').position('#openpanel-front', {
        anchor: ['tl', 'bl'],
        offset: [-180, -300]
      });

    $('#openpanel-front').click(function () {
          $("#chooseservicesList-front").slideToggle("slow");
          if ($('#openpanel-front').text()=='Open panel') {
              $('#openpanel-front').text('Close panel')
          } else {
              $('#openpanel-front').text('Open panel')
          }
        })

    $('a#institutions_link').qtip({
		content: 'Search for X Ray and other Radiological services within Trinidad and Tobago',
		position: {
			adjust: { x: -25, y: -92 }
		},
		style: {
		  width: 220,
		  border: 0,
		  padding: 7,
		  background: '#FBCA01',
		  color: '#FFF',
		  title: { 'font-weight': 'bold' },
		  tip: { corner: 'bottomLeft',
				color: '#FECB00'}
		}

	})



});
