jQuery().ready(function() {  

	jQuery('#nav li a.topmenu:last').addClass('last');
	jQuery('#CenterMe').show();
	jQuery('#Footer').show();

	jQuery('#rotate-graphic').cycle({ 
	fx:    'scrollLeft', 
	speed:  'slow',
	pager: '#HomeRotationNav',
	timeout: 6000,

	pagerAnchorBuilder: function(idx, slide) { 
        // return selector string for existing anchor 
        return '#HomeRotationNav li:eq(' + idx + ') a'; 
    }
	
	});

	jQuery('.opacityColor').opaqueChildren();


	jQuery('#HomeRotationNav a').click(function() { 
		jQuery('#rotate-graphic').cycle('pause'); 
	});

	jQuery('#ZoneTwoBody').cycle({ 
	fx:    'scrollUp', 
	timeout: 8000,
	prev: '.ZoneTwoPrev',
	next: '.ZoneTwoNext',
	delay: 1000
	});

	jQuery('.ZoneTwoPrev').click(function() { 
		jQuery('#ZoneTwoBody').cycle('pause'); 
	});
	jQuery('.ZoneTwoNext').click(function() { 
		jQuery('#ZoneTwoBody').cycle('pause'); 
	});

	var target = '.bigLink';

	jQuery(target).each(function(){
		jQuery(this).hover(
			function(){
				status=jQuery(this).find('a').attr('href');
			},
			function(){
				status='';
			});
		jQuery(this).click(function(){
			location=jQuery(this).find('a').attr('href');
		});
		jQuery(this).css('cursor','pointer');
	});


}); 
