$(document).ready(function() {
						   
		$('#newsButton').hover(
			function() {
				$('#nav_extended').hide();
			},
			function() {
				$('#nav_extended').hide();
			}
		);
	
		$('#productsButton').hover(
			function() {
				$('#nav_extended').show('slow').load('homepage/productcategories');
			},
			function() {
			}
		);
		
		$('#nav_extended').hoverIntent(function(){},function(){
			$('#nav_extended').hide('slide');
		});
		
		$('#historyButton').hover(
			function() {
				$('#nav_extended').show('slow').html( '<div class="item"><a href="history">History of the Forge</a></div><div class="item"><a href="aboutandrew">About Andrew Hall</a></div><div class="clear"></div>' );
			},
			function() {
			
			}
		);
	
});
