/* $jq = jQuery.noConflict();
 $jq.each($jq('ul#shopping').children(), function(index, value) { 
  var count = index + 1;
  $jq(this).addClass('shop' + count); 
});

*/

jQuery.noConflict();
jQuery(document).ready(function($){
	$.each($('ul#shopping li'), function(index, value) { 
	  $(this).addClass('shop' + (index +1)); 
	});
	var location = window.location.href;
	$('ul#shopping li a').each(function(index){
		if($(this).attr('href') == location){
			$(this).parent('li').addClass('active');
		}
	});
});
