

$(document).ready(function() {


// Adds class="current" to menu element of current page the user is at
$(function() {
   var path = location.pathname.substring(1);
   if ( path )
   {
		 $('#navUser a[href$="' + path + '"]').parent().addClass('current');
		 $('ul.category a[href$="' + path + '"]').parent().addClass('current');
		 $('#storeFooter ul a[href$="' + path + '"]').parent().addClass('current');
	 }
 });

});