jQuery.noConflict();
jQuery(document).ready(function(){
	
	jQuery(".project.small img").hover(
		function() {
			jQuery(this).stop().fadeTo("fast", .5);
		},
		function() {
			jQuery(this).stop().fadeTo("fast", 1);
	});
	


	
});
