// JavaScript Document
jQuery.noConflict();

jQuery(document).ready(function() {
	jQuery('.qtip[title]').qtip({
		position: {
		  corner: {
			 tooltip: 'bottomMiddle',
			 target: 'topMiddle'
		  }
	   }, 
		style: { 
			name: 'cream', 
			tip: true,
			width: 400,
			background: '#ffefe1',
			color: '#612e01',
			textAlign: 'justify',
			border: { 
				width: 2, 
				radius: 5 ,
         		color: '#c56f24'
			}

		}
	});
	jQuery('abbr[title]').qtip({
		position: {
		  corner: {
			 tooltip: 'bottomMiddle',
			 target: 'topMiddle'
		  }
	   }, 
		style: { 
			name: 'green', 
			tip: true,
			border: { 
				width: 2, 
				radius: 5 
			}

		}
	});
});

