jQuery(document).ready(function($){
	$('span.fbliketooltip').each(function(){
		var url = $(this).find('a.semantic_url').attr('href');
		$(this).qtip({
			content: '<iframe scrolling="yes" frameborder="0" style="border: medium none; '
						+ 'overflow: hidden; width: 310px; height: 30px;" allowtransparency="true"' 
						+ 'src="http://www.facebook.com/plugins/like.php?href=' 
				+ escape(url) 
				+ '&amp;layout=standard&amp;show_faces=false&amp;width=250&amp;action=like&amp;colorscheme=light"></iframe>',
			position: { adjust: { screen: true }, corner: { target: "bottomMiddle", tooltip: "topMiddle" }},
			hide: {
				fixed: true,
				delay: 300
			},
			style: {
				width: { min: 300, max: 300 }
			}
		});
	});
});
