    jQuery.noConflict();

    jQuery(document).ready(function(){

	jQuery(".gallery-item img").css("opacity","0.6");
	jQuery(".gallery-item img").hover(
	function() {
		jQuery(this).stop().animate({"opacity": "1"}, "200");
	},
	function() {
		jQuery(this).stop().animate({"opacity": "0.6"}, "300");
	});
});
