$(document).ready(function() {

	$("ul.menu li ul").hover(
		function () {
			$(this).parent().addClass('hover');
		}, 
		function () {
			$(this).parent().removeClass('hover');
	});

	$('#images').cycle({ 
		fx:     'fade', 
		timeout: 5000,
		after:   onAfter 
	});
	
	$('a[rel*=facebox]').facebox({
        loading_image : 'loading.gif'
      });
	
	$('.storyline').corner();
	$('.careerline').corner();
	$('.news-item').corner();
	$('.news-image').corner();
	
	$('#story').cycle({ 
		fx: 'scrollDown' 
	});
	
	$("img").lazyload();
	
});

function onAfter() { 
	$('#output').html("") 
	.append('<h1>' + this.alt + '</h1>'); 
}


