/* sweetwilliamltd.com color codes

rev 1

red - #D8500D
blue - #3381D1
green - #81AF1E
yellow - #FEDE01
black - #282D36

"#D8500D", "#3381D1", "#81AF1E", "#CEC617", "#282D36",

rev 2

red - #CE5217
blue - #326F94
green - #0D9C40
yellow - #CEC617
orange - #CE8517
black - #282D36

rev 3

pink - "#ef2088"
blue - "#40afe6"
green - "#0d9c40"
yellow - "#fef200"
orange - "#f7941d"

"#ef2088", "#40afe6", "#0d9c40", "#fef200", "#f7941d"

rev 4

red - "#fd4239"
cyan - "#008cd2"
magenta - "#e40090"
green - "#00af4d"
orange - "#ff7d00"

"#fd4239", "#fd4239", "#e40090", "#00af4d", "#ff7d00"

 */

var colors = [ "#fd4239", "#008cd2", "#e40090", "#00af4d", "#ff7d00" ];

jQuery.noConflict();
     
    // Put all your code in your document ready area
jQuery(document).ready(function($){
      // Do jQuery stuff using $
      $('#vertnav li, .left-links li').each(function(i) {
	
		if ( i >= 5) {
			c = i % 5;
		} else {
			c = i;
		}
		
		$(this).find('a').css({ 'color' : colors[c] });
		
		});
		
		$('.more-views li').each(function(i) {

			if ( i == 1) {

				$(this).find('a').css({ 'display' : 'none' });	
			}
		});
	});

