/*google.load("jquery", "1.3.1");
google.setOnLoadCallback(function()
{
	Effects.setup();
});

var Effects =
{
	setup: function()
	{
		
		// Use the toggle function to set two different onclick events for the 
		// element. The first function passed in will execute the first 
		// time the element is clicked. The second function will execute
		// the second time and they'll alternate back and forth
		jQuery('.head').mouseover(function()
		{
			// This stop function makes sure that it's not already trying to animate the element
			jQuery(this).stop();
			
			// Set the height and width to a bigger size
			jQuery(this).animate({ height: "150px", width: "188px" }, 100);
                       jQuery(this).html(' <br/>NDT<br/>Metal Finishing<br/>Coatings<br/>Welding<br/>Metallurgical Testing<br/>Environmental<br/>');
                       
                        
		}).mouseout(function()
		{
			jQuery(this).stop();
			
			// Set the element back down to a smaller size
			jQuery(this).animate({ height: "19px", width: "188px" }, 200);
                     jQuery(this).html('')
                       
		});
                
                
                
                
                jQuery('.customers').mouseover(function()
		{
			// This stop function makes sure that it's not already trying to animate the element
			jQuery(this).stop();
                         jQuery(this).html('<br/> Customer Approvals<br/> Job Status<br/>')
			
			// Set the height and width to a bigger size
			jQuery(this).animate({ height: "70px", width: "188px" }, 100)
		}).mouseout(function()
		{
			jQuery(this).stop();
			
			// Set the element back down to a smaller size
			jQuery(this).animate({ height: "19px", width: "188px" }, 200);
                        jQuery(this).html('')
		});
                
                
         
                
                jQuery('.aboutus').mouseover(function()
		{
			// This stop function makes sure that it's not already trying to animate the element
			jQuery(this).stop();
			  jQuery(this).html('<br/> Overview History<br/> Mission Statement<br/>Video<br/> Photo Gallery</br>')
			// Set the height and width to a bigger size
			jQuery(this).animate({ height: "150px", width: "103px" }, 100)
		}).mouseout(function()
		{
			jQuery(this).stop();
			
			// Set the element back down to a smaller size
			jQuery(this).animate({ height: "19px", width: "103px" }, 200);
                        jQuery(this).html('')
		});
                
                jQuery('.news').mouseover(function()
		{
			// This stop function makes sure that it's not already trying to animate the element
			jQuery(this).stop();
			jQuery(this).html('<br/> Newsletter<br/> Calendar<br/>Nadcap Meetings<br/> Expansion Archives<br/>Updates')
			// Set the height and width to a bigger size
			jQuery(this).animate({ height: "170px", width: "103px" }, 100)
		}).mouseout(function()
		{
			jQuery(this).stop();
			
			// Set the element back down to a smaller size
			jQuery(this).animate({ height: "19px", width: "103px" }, 200);
                        jQuery(this).html('')
		});
		
                
                
                jQuery('.contact').mouseover(function()
		{
			// This stop function makes sure that it's not already trying to animate the element
			jQuery(this).stop();
			jQuery(this).html('<br/> Request Quote<br/> Request Info<br/> Contacts<br/>Directions/<br/>Location')
			// Set the height and width to a bigger size
			jQuery(this).animate({ height: "130px", width: "103px" }, 100)
		}).mouseout(function()
		{
			jQuery(this).stop();
			
			// Set the element back down to a smaller size
			jQuery(this).animate({ height: "19px", width: "103px" }, 200);
                        jQuery(this).html('')
		});
                //Career Dropdown if needed
                /*
                
                
                       jQuery('.careers').mouseover(function()
		{
			// This stop function makes sure that it's not already trying to animate the element
			jQuery(this).stop();
			
			// Set the height and width to a bigger size
			jQuery(this).animate({ height: "300px", width: "103px" }, 100)
		}).mouseout(function()
		{
			jQuery(this).stop();
			
			// Set the element back down to a smaller size
			jQuery(this).animate({ height: "19px", width: "103px" }, 200);
                        
		});
                
                
                
                
                   jQuery(this).html('');

                
               
             
		
		
	}
} */