// JavaScript Document
//Pageload inits and element checking

	$(window).load(function() {
		//some elements don't exist on all pages
		if ($('#slider2').length){
	        $('#slider2').nivoSlider({controlNav:false,effect:'fade'});
		}
		if ($('#contentSlide').length){
			$('#contentSlide').expander({
			  slicePoint: 500, 
			  widow: 50,
			  expandEffect: 'slideDown',
			  expandSpeed: 5000,
			  userCollapse: true,
			  userCollapseText: '<span style="font-weight:bold;">[Hide Text]</span>'
			});

		}
		//the menu is always present
		jQuery(function(){
			jQuery('ul.sf-menu').superfish({
			 delay:       500,
			 animation:   {opacity:'show',height:'show'},
			 speed:       100,
			 autoArrows:  true,
			 dropShadows: true,
			});
		});
    });  //end window onload function

//general functions 
function changetop10(obj,color)
{
obj.style.background = color
}


