$(document).ready(function() {
	$('#cart-box label').hover(
		function () {
			$(this).css('cursor', 'pointer');
		}, 
		function() {
			$(this).css('cursor', 'normal');
		}
	);
	$('#cart-box label').click(function () {
		window.location = '/basket/';
	});
	// $('#tb1').hover(
	// 	function () {
	// 		$(this).css('cursor', 'pointer');
	// 	}, 
	// 	function() {
	// 		$(this).css('cursor', 'normal');
	// 	}
	// );
	// $('#tb1').click(function() {
	// 	window.location = '/little-thoughts/';
	// });
	// $('#tb2').hover(
	// 	function () {
	// 		$(this).css('cursor', 'pointer');
	// 	}, 
	// 	function() {
	// 		$(this).css('cursor', 'normal');
	// 	}
	// );
	// $('#tb2').click(function() {
	// 	window.location = '/photo-thoughts/';
	// });
	// $('#tb3').hover(
	// 	function () {
	// 		$(this).css('cursor', 'pointer');
	// 	}, 
	// 	function() {
	// 		$(this).css('cursor', 'normal');
	// 	}
	// );
	// $('#tb3').click(function() {
	// 	window.location = '/thoughtful-boxes/';
	// });
	// $('#tb4').hover(
	// 	function () {
	// 		$(this).css('cursor', 'pointer');
	// 	}, 
	// 	function() {
	// 		$(this).css('cursor', 'normal');
	// 	}
	// );
	// $('#tb4').click(function() {
	// 	window.location = '/create-own/';
	// });
	$('.favourite-merch').hover(
		function () {
			$(this).css('cursor', 'pointer');
		}, 
		function() {
			$(this).css('cursor', 'normal');
		}
	);
	$('.favourite-merch').click(function() {
		window.location = '/bestsellers/';
	});
});