jQuery.noConflict();
jQuery().ready(function() {
    jQuery(".rightHeader").toggle(
        function(e) {
            e.preventDefault();
            jQuery(this).parents('.section').children(".sectionDescription").slideDown();
        },
        function(e) {
            e.preventDefault();
            jQuery(this).parents('.section').children(".sectionDescription").slideUp();
            jQuery(this).parents('.section').children(".sectionDescription .center").height(600);
        }
    );
});
jQuery(document).ready(function(){ jQuery('#top_banner').jshowoff(); });
jQuery(document).ready(function(){ jQuery('#slidingLogos').jshowoff({
	effect: 'slideLeft',
	hoverPause: false
}); });
// fix pre overflow in IE
(function (jQuery) {
	jQuery.fn.fixOverflow = function () {
		if (jQuery.browser.msie) {
			return this.each(function () {
				if (this.scrollWidth > this.offsetWidth) {
					jQuery(this).css({ 'padding-bottom' : '20px', 'overflow-y' : 'hidden' });
				}
			});
		} else {
			return this;
		}
	};
})(jQuery);
jQuery('pre').fixOverflow();
