jQuery.noConflict();
jQuery(document).ready(function(){
	
	jQuery("#gallery a img").hover(
		function() {
			jQuery(this).fadeTo("fast", .5);
		},
		function() {
			jQuery(this).fadeTo("fast", .9);
	});
});
