$(document).ready(function() {
	//preload images
	$.preload( '#nav_menu', {
		find:'.jpg',
		replace:'_hover.jpg'
	});
	
	if ($('.fancylink').length > 0){
		$('.fancylink').fancybox();
	}
		
	// Load Header
	$('#main_nav').load("menu.html", null, function(){
		$('ul.sf-menu').superfish();
		$('.sf-menu li a img').hover(function(){
			this.src = this.src.replace('.jpg','_hover.jpg');	
		},function(){
			this.src = this.src.replace('_hover','');
		});			
		
		// For testing, highlights unfinished links
	});
	
	//Load footer
	$('#footer_container').load("footer.html");
		

});
