﻿jQuery(document).ready(function() {
	jQuery('.ImageGrid a, fieldset a.twitter_tip').each(function() {
		jQuery(this).qtip({
			content: $(this).children(".tooltip"),
			show: 'mouseover',
			hide: 'mouseout',
			position: {
				target: 'mouse',
				adjust: {
					'screen': true
				}
			},
			style: { 
				padding: 10,
				background: 'url(/images/semi-trans.png)',
				color: 'white',
				textAlign: 'left',
				border: {
				 width: 0,
				 radius: 0,
				 color: 'rgba(34, 34, 34, 0.9)'
			  },
			tip: 'bottomLeft', 
			name: 'dark' // Inherit the rest of the attributes from the preset dark style
		   }
		});
	});
});
