$(function() {
			
				$('#homepage_banner_1').animate({opacity:1.0}, 6000, function() {
					$(this).fadeOut('slow', function() { 
						$(this).remove(); 
						$('#slideshow').cycle({
							fx:     'fade',
							speed:  'slow',
							timeout: 6000,
							pager:  '#slideshow_nav',
							pagerAnchorBuilder: function(idx, slide) {
							// return sel string for existing anchor
							return '#slideshow_nav li:eq(' + (idx) + ') a';
							}					
						});
					});
				});
				$('#direct').click(function() {
					$('#slideshow_nav li:eq(2) a').triggerHandler('click');
					return false;
				});
				
				
			});
