var $j = jQuery.noConflict();
     
// Use jQuery via $j(...)
$j(document).ready(function(){
$j("slideshow").hide();
});
     
// Use Prototype with $(...), etc.
$("mapBox").style.display = 'none';
