$(document).ready(function()
{
    // curve our cornered divs
  	$(".c").corner();    
	// =========================================

    // atach tooltip menu to shop link
	$('.shop_link').each(function()
	{
	
	   $(this).qtip({
		   content: '<div id="shop_links"><p><a href="http://perfectpints.spreadshirt.com">Shop from U.S.</a></p><p><a href="http://perfectpints.spreadshirt.co.uk">Shop from Europe</a></p></div>',
		   show: {
		            when: 'click', // Show it on click...
		            solo: true // ...and hide all others when its shown
		   },
		   hide: 'unfocus',
		   position: {
		            corner: {
		               tooltip: 'topMiddle', 
		               target: 'bottomMiddle' 
		            },
					adjust: {
						y:-30,
					}
		
		    },
			style: {
			            width: 150,
			            height: 60,
			            padding: 8,
			            border: 5,
			            tip: true,
			},
		});
	}).attr('href', '#');
	// =========================================
	
	// attach report link to GS feedback widget
	$('#report').click(function() {
      feedback_widget.show();
      return false;
    });
    // =========================================

});
