﻿// JavaScript Document

$(document).ready(function() {
	$("#topMenu ul li:last-child").css("margin-right", "0");
	$("#footerLegal ul li:last-child").css("margin-right", "0").css("border-right", "0");
	
	$("#topMenu ul li ul li").hover(
	  function () {
		  //alert("here");
		$(this).parent().parent().children("a").addClass("hover");
	  }, 
	  function () {
		$(this).parent().parent().children("a").removeClass("hover");
	  }
	);
   
  //This changes the link for "keep shopping" on the cart page to link to the allocations page.
	$('a[href^="/index.cfm?method=pages.showPage&pageID=5542e69d-07fc-e405-ac2c-d2d5b58b1b91"]').each(function(){
			
			var newLink = "/Members/Allocations"			
			$(this).attr('href',newLink);
			
		});
	
});
