// -*- coding:utf-8 -*-


$(document).ready(function(){
	$('.scroll-pane').jScrollPane();


	$('#contentcolumn .wine .info h2:first').css("padding-right", "3px");
	$('#contentcolumn .wine .info p:first').css("text-align", "left");

	if($('#medals img').get().length > 1){
	  $('#medals').addClass("animated-medals");
	  $('#medals img').first().addClass("visible");
	  
	  $($('#medals')).everyTime(2000, function() {
	      $current_medal = $('#medals img.visible');
	      $next_medal = $('#medals img.visible').next();
	      if(!$next_medal.get(0)){
		$next_medal = $('#medals img').first();
	      }

	      $current_medal.fadeOut(500).removeClass("visible");
	      $next_medal.fadeIn(500).addClass("visible");

	    });

	}
    });

