$(function(){

	// Initialise the flyouts
	//$('ul#header-navigation').flyouts();
	
	// Fix the pngs in ie6
	//if (ie6) DD_belatedPNG.fix('li.fo-top, li.fo-bottom');
	
	// Generic onLoad
	$(window).bind('load', function(){
		
		// Apply and preload image rollovers
		tryRollovers = function() {
			if ($('img[rollover]').length > 0) {
				$('img[rollover]').each(function(){
					$('<img>').attr('src', $(this).attr('rollover'));
					$(this)
						.data('rollover', {normal:$(this).attr('src'),over:$(this).attr('rollover')})
						.removeAttr('rollover')
						.bind('mouseenter', function(){$(this).attr('src', $(this).data('rollover').over)})
						.bind('mouseleave', function(){$(this).attr('src', $(this).data('rollover').normal)})
				});
			}
		}
		tryRollovers();
		setInterval(tryRollovers, 5000);
	
	});
	
	Cufon.set('fontFamily', 'AG Book Pro UltraLight').replace('.cufon-agbook');
	
});
