/* Author: 

*/

$(document).ready(function() {
	$("tr:even").addClass("even");








});




$("select").change(function () {
          
          $("select option#januaryPlus:selected").each(function () {
                      $("div#januaryPlus").addClass("show") 
                      $("div#februaryPlus").removeClass("show")   
                           
          });
          
        
          $("select option#februaryPlus:selected").each(function () {
                      $("div#februaryPlus").addClass("show")   
                      $("div#januaryPlus").removeClass("show")   
                           
          });
          
          $("select option#januaryPrime:selected").each(function () {
                      $("div#januaryPrime").addClass("show") 
                      $("div#februaryPrime").removeClass("show")   
                           
          });
          
        
          $("select option#februaryPrime:selected").each(function () {
                      $("div#februaryPrime").addClass("show")   
                      $("div#januaryPrime").removeClass("show")   
                           
          });

        
            })

        .trigger('change');

