// JavaScript Document
jQuery(window).bind("load", function() {
									
	jQuery('#host-tracker').load("host-tracker.html", '');
	jQuery(".client").click(function(){	
	    var url = "http://www." + jQuery(this).attr('name') + "";
		window.open(url);								
	});
});
