$(document).ready(function() {
				$('#fixbarum1 a').each(function()
				{
					var content = '<img src="http://images.websnapr.com/?url=';
					content += $(this).attr('href');
					content += '" alt="Loading thumbnail..." height="152" width="202" /><br />';
					content += $(this).attr('title');;

			
				$(this).qtip( {
				content: content,
				position:{
					corner:{
						target:'bottomMiddle',
						tooltip:'topRight'
						}
					},
					style:{
						background:'#ffffff',
						color:'#2d344d',
						border:{
							radius:5,
							color:'#ffc105'
							},
						tip:'topRight',
						name:'light'
					}
				});
			});
		});