$(document).ready(function(){
	
	$(".gallery a#page-pre img").qtip({

		content: 'Previous Page',
		show: 'mouseover',
	       	hide: 'mouseout',
			style: { 
			                         padding:2,
						textAlign: 'center',
                        background: 'transparent',
			                        color: '#666',
			                         width: { max: 320 },
			                       border: { color:'#666',  
			                                  },

					     },
		position: {
		     	corner: {
				     target: 'topMiddle',
                      tooltip: 'bottomRight'
			             },
			   adjust: { x:-4 , y:-2 },
            
		           }
	       });
	
	
	$(".gallery a#page-next img").qtip({

		content: 'Next Page',
		show: 'mouseover',
	       	hide: 'mouseout',
			style: { 
			                         padding:2,
						textAlign: 'center',
                        background: 'transparent',
			                        color: '#666',
			                         width: { max: 320 },
			                       border: { color:'#666',  
			                                  },

					     },
		position: {
		     	corner: {
				     target: 'topMiddle',
                      tooltip: 'bottomLeft'
			             },
					   adjust: { x:4 , y:-2 },
		           }
	       });
	



	$(".gallery a#page-thumbnails img").qtip({

		content: 'View Gallery Thumbnails',
		show: 'mouseover',
	       	hide: 'mouseout',
		style: { 
                        color: '#666',
                         padding:4,
			textAlign: 'center',
                        background: 'transparent',
                         width: { max: 320 },
                      border: { color:'#666',  
			         },

                         
		     },
		position: {
		     	
	          adjust: { x:4 , y:6 },
		           }


	       });

		
	
	

     });



