    /*<![CDATA[*/
        $(function() {
            $(".inner2").hide();
 
            $(".show").toggle(function(){
                $(this).parents("div").prev(".inner2").show('slow');
                $(this).text("less");
                $(this).attr("title", "View Less");	
				
            },function(){
                $(this).parents("div").prev(".inner2").hide();
                $(this).text("more");
                $(this).attr("title", "View More");
            });
        });
    /*]]>*/
	
	function changeDivImage()
    {
        var imgPath = new String();
        imgPath = document.getElementById("changeback").style.backgroundImage;
        
        if(imgPath == "url(images/misc/arrow_more.jpg)" || imgPath == "")
        {
            document.getElementById("changeback").style.backgroundImage = "url(images/misc/arrow_less.jpg)";
        }
        else
        {
            document.getElementById("changeback").style.backgroundImage = "url(images/misc/arrow_more.jpg)";
        }
    }