/*
 * jQuery JavaScript Library v1.3.2
 * http://jquery.com/
 */

$(document).ready(function(){
	$('li.headlink').hover(
		function() { $('ul', this).css('display', 'block'); },
		function() { $('ul', this).css('display', 'none'); });
});

/***
 * switchImage
 * - switches a DOM image object's src with the specified new image
 */	
function switchImage(img, newImgSrc) {
	img.src = newImgSrc;
}

/* PNG fix */

$(document).ready(function(){ 
    $(document).pngFix(); 
}); 