jQuery(document).ready(function() {
//Tooltip - any image with a title
 jQuery(function() {jQuery('img').Tooltip({delay: 0,
  track: true, showURL: false, top: 05, 
    left: 10, fixPNG: true}
 )
})
//Switch Class on hover for weather table
jQuery(".ymWeatherResults tr").hover(function(){
  jQuery(this).addClass("trTwo");
},function(){
  jQuery(this).removeClass("trTwo");
});

jQuery(".toggler-hide").toggle(function(){
  jQuery(this).parent().next().slideUp("fast");
  jQuery(this).html("Show");
},function(){
  jQuery(this).parent().next().slideDown("fast");
  jQuery(this).html("Hide");
});


});

