$(document).ready( function() {

	// Creates a hover for the Shop button
	$('#shop_hover').qtip( {
		classes: {	target: 'test'	},
		content : $('#shop_hover_content').html(),
		position: { adjust: { x: -71, y: 0 } },
		hide: {	fixed: true	},
		onShow:function(){
			alert('hello');
		},
		style: {
			width: 600
		}
	});
});
