function swapProduct(id){
    
    //var profile = document.profileText.
    //var profileImage = document.getElementById('profileImage');
    var product = document.getElementById('Test');
    
    new Effect.Fade(product, {duration: .2});
    product.innerHTML = "test";
    new Effect.Appear(product, {duration: .2})
    
    //var product = document.getElementById('profileHeaderImage');
    /*
    var profileText = document.getElementById('profileText');
    var ul = document.getElementById('button');
    var profileTextTemp;
    var ulText;
    if(id == 'Sheila'){
        //profileImage.src = '../../images/about/AboutSheila_03.jpg';
        profileHeaderImage.src = '../../images/about/AboutSheila_05.jpg';
        
        profileTextTemp = '<img src=\"../../images/about/AboutSheila_03.jpg\" style=\"float:right; padding:5px; margin:5px; border:3px solid #e4e4e4;\">';        
        profileTextTemp += '<p>In 2001, actress, writer and producer Sheila Kelley founded the extraordinary movement called the S Factor&reg; program. A passionate mother of two, Sheila built this movement from the ground up, starting in her home office, where she held small classes for friends and fellow moms. It has since evolved into a worldwide trend, with studios in Los Angeles, San Francisco, New York City, Encino, Orange County, Houston and Chicago. With plans in the works for locations in Miami, Dallas and Atlanta. </p>';
        profileTextTemp +='<p>Sheila developed the S Factor&reg; to be a gentle yet rigorous workout, yielding not only amazing physical results, but a broad spectrum of effects on the student\'s psyche and well-being. By following the female body\'s natural curve and inclination to move, she realized the S Factor&reg; workout could be tailored to each individual\'s strengths and limitations, while providing a soothing, comfortable movement that is actually indulgent and celebratory. Incorporating meditation and self-touch, it became a way to care for the body and soul, and embrace the wonders of the female body. Students leave class feeling relaxed and comfortable in their bodies, and, most of all, in touch with the beautiful and sensual creatures that we all are. Self-judgment, insecurities and self-loathing are stripped away in layers.</p>';
        profileTextTemp +='<p>Sheila is married to actor Richard Schiff, co-star of the Emmy award-winning NBC television series, The West Wing, who has also enjoyed a lengthy and acclaimed acting career. They have a son, Gus, and a daughter named Ruby Christine.</p>';
    
        //Update the UL        
        ulText = '<ul>';
        ulText += '<li class="selected"><div align="right"><a href="#" onClick="swapProfile(\'Sheila\')"><font class="boldname">Sheila Kelley&nbsp;&nbsp;</font></a></div></li>';
        ulText += '<li><div align="right"><a href="#" onClick="swapProfile(\'Lisa\')"><font class="boldname">Lisa Rinna&nbsp;&nbsp;</font></a></div></li>';
        ulText += '</ul>';
    }else{        
        //profileImage.src = '../../images/about/LisaRinna.jpg';
        profileHeaderImage.src = '../../images/about/AboutLisa.jpg';
        
        
        profileTextTemp = '<img src=\"../../images/about/LisaRinna.jpg\" style=\"float:left; padding:5px; margin:5px; border:3px solid #e4e4e4;\">';
        profileTextTemp += '<p>With her exotic looks, prodigious talent, infectious energy and savvy business acumen, Lisa Rinna has become one of the most recognizable faces in Hollywood.</p>';
        profileTextTemp +='<p>Lisa currently serves as host and fashion expert for TV Guide Network\'s signature Red Carpet pre-shows at Hollywood\'s biggest events, including the Academy Awards&reg;, Emmy&reg; Awards, Grammy&reg; Awards, Golden Globe&reg; Awards and Screen Actor\'s Guild&trade; Awards.</p>';
        profileTextTemp +='<p>Recently, Lisa starred as Roxie Hart alongside her husband Harry Hamlin in the hit Broadway musical, Chicago. Before joining the Broadway cast on June 19, 2007, Rinna performed with the Chicago National Tour.</p>';
        profileTextTemp +='<p>She also competed on the hit ABC series, Dancing with the Stars and participated in the national Dancing with the Stars tour.</p>';
        profileTextTemp +='<p>A press favorite and CEO of a wildly successful fashion venture, Lisa is a popular guest on many high-profile national television shows including an appearance on the The Oprah Winfrey Show, which selected Belle Gray as one of \"Celebrities Favorite Places,\" and featured a star-studded in-store tour with Belle Gray shopper Cindy Crawford.</p>';
        profileTextTemp +='<p>Rinna is a native of Medford, Oregon and loves the outdoor activities.  A fitness fanatic, she also enjoys yoga, skiing and tennis.  Lisa resides in Los Angeles with her husband and two daughters.</p>';
        profileTextTemp += '<br><br>';
        
        //Update the UL 
        ulText = '<ul>';
        ulText += '<li><div align="right"><a href="#" onClick="swapProfile(\'Sheila\')"><font class="boldname">Sheila Kelley&nbsp;&nbsp;</font></a></div></li>';
        ulText += '<li class="selected"><div align="right"><a href="#" onClick="swapProfile(\'Lisa\')"><font class="boldname">Lisa Rinna&nbsp;&nbsp;</font></a></div></li>';
        ulText += '</ul>';
        
    }
    ul.innerHTML = ulText; 
    profileText.innerHTML = profileTextTemp;
    */  
}