﻿// JavaScript Document

$(document).ready(function() {
	
	//Navigation - Remove margin from last menu item at the top//
	$("#topMenu ul li:last-child").css("margin-right", "0");
	
	//Navigation - Keep top menu item highlighted when on drop down menu//
	$("#topMenu ul li ul li").hover(
	  function () {
		$(this).parent().parent().children("a").addClass("hover");
	  }, 
	  function () {
		$(this).parent().parent().children("a").removeClass("hover");
	  }
	);
	
	//Navigation - add rounded corner graphic to bottom menu//
	$("#topMenu ul > li ul").append("<li class='lastli'>&nbsp;</li>");
	
	//Homepage - remove margin on right pods//
	$(".homepagePod:odd").addClass("last");
	
	//Footer Links - add phone number to footer navigation//
	$(".footerLinks ul").append("<li>Questions? Call (707) 963 7774</li>");
	
	//Homepage Left Navigation//
	$('.toggle').css('cursor','pointer').click(function() {
	  
	 	$(this).toggleClass('toggleActive').next(".toggleBox").slideToggle("slow");
		return true;
	  
	});
	
	//Product List
	$(".v65-product2Up:odd").addClass("last");
	
	//Bread Crumbs - replace default home with //
	$("#breadcrumbs li:first a").text("V. Sattui Winery");

	
});
