// Navigation JavaScript
$(document).ready(function(){
						   // msie nav fix
						   if ($.browser.msie) {
								$("#topNav .center .link a").css({"padding-left" : "26px", "padding-right" : "26px"});
						   }
						   
						   // preorder html swap
						   $(".preOrder").html("NOW AVAILABLE");
						   $(".nlraDesc").html("The National Labor Relations Board has now released the new private-sector NLRA posting. Labor Law Compliance Center has added this posting to all noted Combination and Federal posters and we are ready to ship the new posters. Order now to beat the April 30 compliance deadline.");
						   
						   //homepage central nav image hovers
						   $(".homePagePicNavText1").hover(
								function(){
									$(".homePagePicNavPic1").addClass("homePagePicNavPicHov");
								},
								function(){
									$(".homePagePicNavPic1").removeClass("homePagePicNavPicHov");
								})
						   $(".homePagePicNavPic1").hover(
								function(){
									$(".homePagePicNavText1 span").addClass("homePagePicNavTextHov");
								},
								function(){
									$(".homePagePicNavText1 span").removeClass("homePagePicNavTextHov");
								})
						   $(".homePagePicNavText2-3").hover(
								function(){
									$(".homePagePicNavPic2-3").addClass("homePagePicNavPicHov");
								},
								function(){
									$(".homePagePicNavPic2-3").removeClass("homePagePicNavPicHov");
								})
						   $(".homePagePicNavPic2-3").hover(
								function(){
									$(".homePagePicNavText2-3 span").addClass("homePagePicNavTextHov");
								},
								function(){
									$(".homePagePicNavText2-3 span").removeClass("homePagePicNavTextHov");
								})
						   $(".homePagePicNavText4").hover(
								function(){
									$(".homePagePicNavPic4").addClass("homePagePicNavPicHov");
								},
								function(){
									$(".homePagePicNavPic4").removeClass("homePagePicNavPicHov");
								})
						   $(".homePagePicNavPic4").hover(
								function(){
									$(".homePagePicNavText4 span").addClass("homePagePicNavTextHov");
								},
								function(){
									$(".homePagePicNavText4 span").removeClass("homePagePicNavTextHov");
								})
						   $(".homePagePicNavText5").hover(
								function(){
									$(".homePagePicNavPic5").addClass("homePagePicNavPicHov");
								},
								function(){
									$(".homePagePicNavPic5").removeClass("homePagePicNavPicHov");
								})
						   $(".homePagePicNavPic5").hover(
								function(){
									$(".homePagePicNavText5 span").addClass("homePagePicNavTextHov");
								},
								function(){
									$(".homePagePicNavText5 span").removeClass("homePagePicNavTextHov");
								})
						   $(".homePagePicNavText6").hover(
								function(){
									$(".homePagePicNavPic6").addClass("homePagePicNavPicHov");
								},
								function(){
									$(".homePagePicNavPic6").removeClass("homePagePicNavPicHov");
								})
						   $(".homePagePicNavPic6").hover(
								function(){
									$(".homePagePicNavText6 span").addClass("homePagePicNavTextHov");
								},
								function(){
									$(".homePagePicNavText6 span").removeClass("homePagePicNavTextHov");
								})
						   
						   //nav class rollovers
						   $("#topNavTab_2 a").hover(
								function(){
									$("ul.fedNav").removeClass("secondaryNavVis");
								},
								function(){
									$("ul.fedNav").addClass("secondaryNavVis");
										})
						   $("ul.fedNav").hover(
								function(){
									$("ul.fedNav").removeClass("secondaryNavVis");
									$("#topNavTab_2 a").addClass("primaryNavSecondaryHov");
									$("a span.fedNav").addClass("primaryNavSecondaryHovColor");
								},
								function(){
									$("ul.fedNav").addClass("secondaryNavVis");
									$("#topNavTab_2 a").removeClass("primaryNavSecondaryHov");
									$("a span.fedNav").removeClass("primaryNavSecondaryHovColor");
										})
						   $("#topNavTab_3 a").hover(
								function(){
									$("ul.stateNav").removeClass("secondaryNavVis");
								},
								function(){
									$("ul.stateNav").addClass("secondaryNavVis");
										})
						   $("ul.stateNav").hover(
								function(){
									$("ul.stateNav").removeClass("secondaryNavVis");
									$("#topNavTab_3 a").addClass("primaryNavSecondaryHov");
									$("a span.stateNav").addClass("primaryNavSecondaryHovColor");
								},
								function(){
									$("ul.stateNav").addClass("secondaryNavVis");
									$("#topNavTab_3 a").removeClass("primaryNavSecondaryHov");
									$("a span.stateNav").removeClass("primaryNavSecondaryHovColor");
										})
						   $("#topNavTab_4 a").hover(
								function(){
									$("ul.specNav").removeClass("secondaryNavVis");
								},
								function(){
									$("ul.specNav").addClass("secondaryNavVis");
										})
						   $("ul.specNav").hover(
								function(){
									$("ul.specNav").removeClass("secondaryNavVis");
									$("#topNavTab_4 a").addClass("primaryNavSecondaryHov");
									$("a span.specNav").addClass("primaryNavSecondaryHovColor");
								},
								function(){
									$("ul.specNav").addClass("secondaryNavVis");
									$("#topNavTab_4 a").removeClass("primaryNavSecondaryHov");
									$("a span.specNav").removeClass("primaryNavSecondaryHovColor");
										})
						   });
