jQuery.noConflict();
jQuery(document).ready(function() {


/*add a message to zoomable images*/
jQuery("a.zoom").after ("<span class=\"zoommessage\">Click on the image to see a larger version</span>");
/*click to show full image*/
jQuery("a.zoom").fancybox();



/*highlight the active page in the submenu*/

var loc = window.location.toString().split("/");
    loc = loc[loc.length - 1];
    jQuery("#sm li a[href=\""+loc+"\"]").addClass("smSelected");


/*top menu drop downs */

var timeout    = 500;
var closetimer = 0;
var ddmenuitem = 0;

jQuery(function(){

    jQuery("ul#mmnav li").hover(function(){
    
        jQuery(this).addClass("hover");
        jQuery('ul:first',this).css('visibility', 'visible');
    
    }, function(){
    
        jQuery(this).removeClass("hover");
        jQuery('ul:first',this).css('visibility', 'hidden');
    
    });
    
    jQuery("ul#mmnav li ul li:has(ul)").find("a:first").append(" &raquo; ");

});

});


