
$(document).ready(function() {

	// Add mouseover effect on hyperlinks
	$("#content a img").hover(
		function() {
			$(this).fadeTo('fast', 0.6);
		},
		function() {
			$(this).fadeTo('fast', 1.0);
		}
	);


});

