$(document).ready(function(){ 
		         $("a img").qtip( {  <!--Pointer //-->
				 content:{text:false},<!--Read text in 'title' //-->
				 position:{
				 corner:{
				 tooltip: 'bottomMiddle',<!--Positiion of tooltip //-->
                 target: 'topMiddle'<!--Opposite //-->
				 }
				 },
				 
				 
				 style:{
				 width:350,
				
				 padding:5,
				 background:'#FFD7DF',<!--Background Colour //-->
				 color:'#73002E',<!--Text Colour //-->
				 textAlign:'center',
				 border:{
				 width:1,
				 radius:5,
				 color:'#FF34B3',<!--Border Colour //-->
				 },
				 tip:'bottomMiddle',<!--Tip Position //-->
				 name:'dark'
				 }
				 
				 
				 
				 
				 });
				 });
				 
