$(document).ready(function(){
	$("#compare tr:not(:first)").css("cursor", "pointer").click(function(){
		window.open($(this).find("td.link a").attr("href"));
	});
	$("td.link a").click(function() {
		window.open($(this).attr("href"));
		return false;
	});
	
	$("#deals-list li").css('cursor', 'pointer').click(function() {
		window.open($(this).find('a').attr('href'));
	}); 
	
	$("#deals-list li a").click(function() {
		window.open($(this).attr('href'));
		return false;
	});
	
	$('#plans ul li').css("cursor", "pointer").click(function() {
	  window.location = $(this).find("a").attr('href');
	});
	
	$('#plans ul li div a').click(function() {
		window.location = $(this).attr('href');
		return false;
	});
	
	$("#contact-details p").prepend('<a href="mailto:sales@usb-dongles.co.uk">sales@usb-dongles.co.uk</a>')
});