jQuery.noConflict();

jQuery(document).ready(function() {
    // Change the home icon
    if (!IsHomePage) {
        jQuery("#tm_home_icon").mouseover(function() {
           jQuery("#homeIcon").attr("src", ThemeDir+'/images/home-selected.gif');
        });

        jQuery("#tm_home_icon").mouseout(function() {
           jQuery("#homeIcon").attr("src", ThemeDir+'/images/home-unselected.gif');
        });
    }
});

