$(document).ready(function(){
	$('#logo').click(function(){
		location.href = "/";
	});
	
  $.fn.qtip.styles.florentineshop = { // Last part is the name of the style
   width: 500,
   background: '#FFF',
   color: 'black',
   textAlign: 'left',
   border: {
      width: 7,
      radius: 5,
      color: '#A2D959'
   },
   tip: 'bottomLeft',
   name: 'dark' // Inherit the rest of the attributes from the preset dark style
  }
 
});
