jQuery().ready(function() {  

	jQuery('#HomeRotation').show();
	
	jQuery('#HomeRotation').cycle({ 
	fx:    'fade',
	speed: 2500,
	timeout:  7000
	});
	
	jQuery('#logo').each(function(){
		jQuery(this).hover(function(){
			status=jQuery(this).find('a').attr('href');
		});
		jQuery(this).click(function(){
			location = jQuery(this).find('a').attr('href');
		});
		jQuery(this).css('cursor','pointer');
	});

	jQuery('#HomeNewsBody').cycle({ 
	fx:    'fade', 
	speed: 2000,
	timeout: 6000,
	prev: '#UpcomingPrev',
	next: '#UpcomingNext',
	delay: 1000
	});

	jQuery('#UpcomingPrev').click(function() { 
		jQuery('#HomeNewsBody').cycle('pause'); 
	});
	jQuery('#UpcomingNext').click(function() { 
		jQuery('#HomeNewsBody').cycle('pause'); 
	});
}); 
