/* @group ExtraContent functions */ jQuery(document).ready(function($){ // ExtraContent r1.3 02-23-09 12:33 // plus slow slide in $('#myExtraContent1 script').remove(); $('#myExtraContent1').appendTo('body #extraContainer1').show(); var i=2; while (i<=10) { $('#myExtraContent'+i+' script').remove(); $('#myExtraContent'+i).appendTo('body #extraContainer'+i).show(); i++; } //* if header height variable set .pageHeader/.seydoggySlideshow height to content height //* test if varaible header is selected if(typeof headerHeightVariable != "undefined"){ var ecTallest = 0; $('#extraContainer1 div').each(function() { if ($(this).outerHeight(true) > ecTallest) ecTallest = $(this).outerHeight(true); }); $('.seydoggySlideshow,.pageHeader').height(ecTallest + 60); } }); /* @end */ // test to see if user has selected a slideshow option if(typeof slideshowEnabled == 'function') { include(jsPathto + 'scripts/slideshow/seydoggy.slideshow.js'); }