// JavaScript Document

// set the png fix to load with document
$(document).ready(function(){ 
	$(document).pngFix(); 
	fadeImages();
}); 




// function to fade buttons
function fadeImages() {
	$('.fadeimg')
		.css({ opacity: 1.0 })
		.mouseover(function() {				
			$(this).stop().animate(
				{ opacity: 0.6 }
			, 200); // this is the duration of the fade on mouseover in milliseconds
		})
		.mouseout(function() {
			$(this).stop().animate(
				{ opacity: 1.0 }
			, 1000); // this is the duration of the fade on mouseout in milliseconds
		});
}


