
/* - js.js - */
jQuery(function(){
  $('table.plain tr:odd').css('background-color','#f1f1f1');
  $('#portlets-above .portlet .portlet-right,#portlets-above .portlet .portletFooter').hide();
  $('#portlets-above .portlet').hover(function(){
   $(this).children('.portlet-right,.portletFooter').slideDown({ easing:'easeOutBounce', duration: 400, queue: false });
  }).mouseleave(function(){
   $(this).children('.portlet-right,.portletFooter').slideUp();
 });

 $('.portletsBelowContentC .portlet .portletFooter a.tile').click(function() {
  link = $(this).attr('href');
  window.open(link);
 });

});




