function genericFooterScrollerSetup(){
	
	$('html').css('padding', '0 0 ' + ( $('#Generic_bottom_footer_popup').height() * 1 + 50 ) + 'px 0');
	
	if ( typeof document.body.style.maxHeight != "undefined" ) {
		jQuery('#Generic_bottom_footer_popup').css('position', 'fixed').css('bottom', '0').css('left', '0');
	}				
	
	jQuery('#Generic_bottom_footer_popup').fadeIn('slow');
	jQuery('#Generic_bottom_footer_popup').bgiframe();
	jQuery('.left_hero').ifixpng('images/pixel.gif');	

}

function genericFooterScroller(){
	setTimeout ( "genericFooterScrollerSetup()", 5000 );			
	setTimeout ( "genericFooterScrollerClose()", 25000 );	
}

function genericFooterScrollerClose(){
	jQuery('#Generic_bottom_footer_popup').fadeOut('slow');
}