		$(document).ready(function() {		
			/* Flyout tab navigation  */
				$('#home_site_nav').hide();
				
		  	$("#home_office_nav").toggle(	   
			   	function (event) {
		        $("#labels_nav").animate({width: "125px"}, 1000, "swing");
		        $("#photo_nav").animate({width: "150px"}, 1000, "swing");
		        $("#wide_nav").animate({width: "150px"}, 1000, "swing");
		        $("#home_office_nav,#labels_nav,#photo_nav,").css('background-color','#d3e0e8');
		        $("#home_site_nav").fadeIn('slow');
					},
		  		function (event) {
		        $("#labels_nav, #photo_nav, #wide_nav").animate({width: 0}, 1000, "easeInOutQuad");	        
		        $("#home_office_nav").animate({ backgroundColor: "white" }, 1500)
		        $("#home_site_nav").fadeOut('slow');
			    }
			   );
			   
			/* Homepage - Hover bottom modules */
			$(".hover_container").hover(
		   	function () {
		      $(this).find(".hover").animate({opacity: 'show'}, 500);
				},
				function () {
		     $(this).find(".hover").animate({opacity: 'hide'}, 500);
		    }
			);
					
			/* Share dropdown - sitewide 		 */
			$('#share_wrap').hide();
		  $("#share_page_link a").click(function () {
				$("#share_wrap").slideToggle("slow");
			});
			
			/* 	News and Video Share modules 	 */
			$("div.share_module, div.share_module_news").hide();
			
			$(".print_download a.share_link").click(function() {
				$(".print_download").next("div.share_module_news").slideToggle();
				return false;
			});
			$(".video_share a").click(function() {
				$(this).parent().next("div.share_module").slideToggle();
				return false;
			});
		});
