// Shows the title and description when hovering over a certain section of the
// winespectrum bar.
$(document).ready(function() {
	$('.winespectrum-bar li')
		.mouseover(function(){
			$(this).addClass('hover');
		})
		.mouseout(function(){
			$(this).removeClass('hover');
		})
});