
	function addBasket()
	{
		
		$(".node-add-to-cart").click();
	}
	
	
	$(document).ready(function() {
			jQuery($("#add")).find("img").hover(function() {
				if (($(this).attr('src').indexOf("lexisnexis") != -1)) {
				$(this).css('cursor', 'pointer');
				}
			}, function() {
				if (($(this).attr('src').indexOf("lexisnexis") != -1)) {
				$(this).css('default', 'pointer');
				}
			})
			
			jQuery($("#add")).find("img").click( function() {
				if (($(this).attr('src').indexOf("lexisnexis") != -1)) {
					window.location.href = "http://www.lexisnexis.co.uk/terms/";
				}
			});
	});

