//jQuery.noConflict();
jQuery(document).ready(function($){
//jQuery(function(){ 
	//Retrieves the number of list items.
		//alert($('.MultiClassList li').size());
		
		//Put the class names with the background styles here.
		var BackgroundColours = new Array('pNav-1','pNav-2','pNav-3','pNav-4', 'pNav-5','pNav-6','pNav-7');
		//alert(BackgroundColours.length);
		
		var intCounter = 0
		
		$( 'ul#productsNav > li' ).each(
									   
			function(intIndex){ //May not need intIndex
				//intIndex = intIndex + 1
				
				if(intCounter == BackgroundColours.length){
					intCounter = 0;
				}
				
				$(this).addClass('' + BackgroundColours[intCounter] + '');
				
				intCounter = intCounter + 1
				
			}
		
		);
 
});

