function ShowCard(card)
{
	window.open('http://gatherer.wizards.com/Pages/Search/Default.aspx?name=["'+card+'"]','lookupwin', 'width=760, height=800, scrollbars=1, resizable=1');;
}

jQuery(document).ready(function() {
	jQuery('.grocal_magiccard').click(function() {
		var name = jQuery(this).attr('rel');
		ShowCard(name);
		return false;
	});
	jQuery('.grocal_magiccard').each(function()
	   {
		  jQuery(this).qtip({
			content: '<img src="http://gatherer.wizards.com/Handlers/Image.ashx?type=card&name=' + jQuery(this).attr('rel') + '" />',
			show: 'mouseover',
			hide: 'mouseout',
			position: {
				target: 'mouse',
				adjust: { mouse: true, screen: true }
			}
		})
	});
});