﻿$(document).ready(function() {




  $('ul.menu li a').each(function() {

	var thisProdHref = $(this).attr('href');
	var thisProdNow = window.location.pathname;


	if (thisProdHref == thisProdNow) {


		$(this).parent('li').addClass('current_page_item');
	}


  });

	  




});
