/* -----------------------------------------------------------------
	Slideshow
----------------------------------------------------------------- */
$(document).ready(function() {
    $('.banner').cycle({
		fx: 'fade',
		timeout: 4000,
        speed: 1500,
        speedIn: 1000,
        speedOut: 1000
	});
});

/* -----------------------------------------------------------------
	Right Column Scroller
----------------------------------------------------------------- */
var name = "#secondary_nav_outer";
 var menuYloc = null;
 
   $(document).ready(function(){
     if($(name).length){ //if this thing exists
       menuYloc = parseInt($(name).css("top").substring(0,$(name).css("top").indexOf("px")));
       $(window).scroll(function () { 
         offset = menuYloc+$(document).scrollTop()+"px";
         $(name).animate({top:offset},{duration:500,queue:false});
       });
     }  //endif
   });
