/*
$(function()
{
	$('.scroll-pane').jScrollPane();
});
*/
$(document).ready(
    function() {
        $("#healthy_food_link").click( function() {
            $(".footer_text").hide('slow');
            $("#healthy_food_text").show('slow');
        });
        
        $("#deli_link").click( function() {
            $(".footer_text").hide('slow');
            $("#deli_text").show('slow');
        });
        
        $("#catering_link").click( function() {
            $(".footer_text").hide('slow');
            $("#catering_text").show('slow');
        });
        
        $("#takeout_link").click( function() {
            $(".footer_text").hide('slow');
            $("#takeout_text").show('slow');
        });
        
        $("#order_online_link").click( function() {
            $(".footer_text").hide('slow');
            $("#order_online_text").show('slow');
        });
        
        if( !(jQuery.browser.msie) ) { 
            $("#deli_blog, #deli_footer_text").corners('20px');
            $("#deli_footer li").corners('10px');
        }
    }
);
