var gastrosourceLocalFunctions = function() { return { //this function is production ready moveAddFavouritesSuccessMessage: function() { //check if the path is like http://www.gastrosource.com/favourites/slides/add/ if (location.href.include('/favourites/slides/')) { $$('#page_tools .links_message').each(function(el) { //move this element to be first child of contentholder var ul = new Element('ul'); ul.appendChild(el); $('contentholder').insert({ top: ul }); }); } } }(); } function showIntroTextGallery() { if (!!$('media_gallery_viewer') && !!$('levelfourcontentheader')){ var intro=$$('#levelfourcontentheader ul.two_column li')[0].innerHTML; $('media_gallery_item_holder').insert({'bottom':"

"+intro+"

"}); } } function redefineOpacity() { //simply sets the minimum opacity minOpacity = 0.1; } Event.observe(window, 'load', function() { if(!!$('disclaimer_overlay')){ $('frm_disclaimer').style.display='none'; } }); //add the above to the onload call stack var toCall =[]; toCall[0] = gastrosourceLocalFunctions.moveAddFavouritesSuccessMessage; toCall[1] = showIntroTextGallery; toCall[2] = redefineOpacity;