$(document).ready(function(){
    $("#room-menu-link").click(function(){
            $("#widget-link").removeClass("add-selection-background");
            $("#room-link").addClass("add-selection-background");
            //$("#product-screenshot").css("background", "url(../../images/room-image.png) no-repeat");
            //$("#productsbox_description").html("<div id='room-content'><p><a href='roomselect'>Create</a> a chat room of your own to use at bumpin.com or put on your site and discuss a variety of topics with other people.</p></div>");
            $("#products-box").html("<div id='productsbox_description'> <div id='room-content'><p><a href='roomselect'>Create</a> a chat room of your own to use at bumpin.com or put on your site and discuss a variety of topics with other people.</p></div></div> <a href='roomselect' id='product-screenshot'><img src='../../images/room-image.png' ></a>");
           
    });

     $("#widget-menu-link").click(function(){
           $("#room-link").removeClass("add-selection-background");
           $("#widget-link").addClass("add-selection-background");
           //$("#product-screenshot").css("background", "url(../../images/widget-image.png) no-repeat");
             //$("#productsbox_description").html("<div id='widget-content'><p><a href='select'>Choose</a> from a series of online chat widgets that enable people visiting the same webpage to discover each other in real-time and start a live discussion.</p></div>");
           $("#products-box").html("<div id='productsbox_description'> <div id='widget-content'><p><a href='select'>Choose</a> from a series of online chat widgets that enable people visiting the same webpage to discover each other in real-time and start a live discussion.</p></div> </div>   <a href='select' id='product-screenshot'><img src='../../images/widget-image.png' ></a>");
        })
});