jQuery(document).ready(function(jQuery) 
{

jQuery('#emailtooltip').qtip({
   content: 'Email',
   show: 'mouseover',
   hide: 'mouseout',
   position: {
      corner: {
         target: 'topMiddle',
         tooltip: 'bottomLeft'
      }
   },
style: { 
		 border: {
         width: 7,
         radius: 8,
         color: '#1c83db'
      		},
		width: 135,
		tip: 'bottomLeft',
		textAlign: 'center',
		background: '#1c83db',
		color: '#ffffff',
		'font-weight': 'bold'
  }

})
jQuery('.rssicon').qtip({
   content: 'Subscribe to the RSS Feed',
   show: 'mouseover',
   hide: 'mouseout',
   position: {
      corner: {
         target: 'topMiddle',
         tooltip: 'bottomRight'
      }
   },
style: { 
		 border: {
         width: 7,
         radius: 8,
         color: '#fb9d39'
      		},
		width: 160,
		tip: 'bottomRight',
		textAlign: 'center',
		background: '#fb9d39',
		color: '#ffffff',
		'font-weight': 'bold'
  }

})	
jQuery("tr:odd").addClass("odd");
jQuery("tr").hover(function(){
	jQuery(this).addClass("rowover");
	}, function() {
	  jQuery(this).removeClass('rowover');
	});
});