val = '';
jQuery(document).ready(function() {
jQuery('#rss-link, #email-link, #twitter-link').tooltip({ 
    showURL: false,
	opacity: 1, 
    fixPNG: true, 
    showBody: " - ", 
	track: true,
    extraClass: "rss-link", 
    top:15, 
    left: 5 
});

jQuery('.tb li').click(function() {
	val = jQuery('a', this)[0].getAttribute('href', 2);
	window.location.replace(val);

});


});




