function LoadMore(){
	if ($('page2').getStyle('display') == 'none'){
        $('page2').appear({ duration: 2.0 });
	}else{
    	if ($('page3').getStyle('display') == 'none'){
            $('page3').appear({ duration: 2.0 });
            $('footer_loading').setStyle({display:'none'});
        }
    }
}

function LoadMoreProducts(){
	if ($('moreFocus').getStyle('display') == 'none'){
        $('moreFocus').appear({ duration: 2.0 });
	    $('more_focus').fade();
	}
}

