/* Project Name Global Javascript Functions

By  Will Moore - ISITE Design


*/

//start the jQuery functions
$(document).ready(function() {

$(".popup").hide();

$("#comparisontable td a").hover(
	function () {
			$(this).next(".popup").show()
		},
	function () {
			$(this).next(".popup").hide()
    }

)
$("#comparisontable td a").click(function () {
	return false;
})

});// document ready / end jquery functions
