/*
	CHERRYCALL JAVASCRIPT
	CREATED:09.12.09
	MODIFIED:09.12.09
	AUTHOR:ANDY FIELD
*/


$(document).ready(function(){
	$('a[title]').qtip({ 
		position: {
      		corner: { 
      			target:'bottomMiddle',
				tooltip:'topMiddle'
      			}
   		},
		style: { 
			name:'red', 
			tip:true,
			textAlign:'center',
			width:280,
			border: { width: 7, radius: 5, color: '#470606'},
			background: '#470606',
			color:'#ffffff'

		}
	})
 });
