$(document).ready(function() {
	$(".pa-info-tooltip").tooltip({
		bodyHandler: function() {
		return $($(this).next('span.tooltip-text')).html();
		},
		top: -14,
		left: 5,
		showURL: false
	});

	//ie6 bugfixes
	if($.browser.msie && $.browser.version <= 6){
		$('#table-tabs a').click(function() {

			if($('.productadvisor-tb:visible').length > 0) {
				$('td.feature-description p').each(function(i){
					if($(this).width() > 205){
						$($(this)).width('204px');
					}
				});
			}	
		});
	}
});