var is_ie = /MSIE (5\.5|6).+Win/.test(navigator.userAgent);

$(document).ready(function(){
	$("a.prev-tooltip").tooltip({
		bodyHandler: function() {
			return $($(this).attr("rel")).html();
		},
		track: false,
		showURL: false,
		fade: 500,
		extraClass: "fixedwidth",
		positionLeft: true
	});
	$("a.next-tooltip").tooltip({
		bodyHandler: function() {
			return $($(this).attr("rel")).html();
		},
		track: false,
		showURL: false,
		fade: 500,
		extraClass: "fixedwidth",
		positionRight: true
	});
	$("a.prod-box-tooltip").tooltip({
		track: true,
		showBody: false,
		showURL: false,
		extraClass: "prodlist",
		fade: 700
	});
});
