// JavaScript Document

// Tool Tip
$(document).ready(function(){
$('img.tipitem').each(function(){
	$(this).qtip({
		  content: $(this).attr('alt'),
		  position: {
		  	corner: {
				target: 'topRight',
				tooltip: 'bottomLeft'
			}
		  },
		  show: 'click',
		  hide: 'click',
		  style: { 
			  width: 300,
			  padding: 5,
			  color: 'black',
			  textAlign: 'center',
			  border: {
				 width: 7,
				 radius: 5
		  },
		  tip: 'bottomLeft',
		  name: 'red' // Inherit the rest of the attributes from the preset dark style
   }

	})
	.attr('alt', '');
});
});


