$.noConflict();
	jQuery(document).ready(function($) {
								   
		$('.list_item_start').hover( function(){
			$(this).addClass('public');
			$(this).children().addClass('public');
			$(this).addClass('pointer');
		},
		function(){
			$(this).removeClass('public');
			$(this).children().removeClass('public');
		});
		
		$('.list_item').hover( function(){
			$(this).addClass('public');
			$(this).children().addClass('public');
			$(this).addClass('pointer');
		},
		function(){
			$(this).removeClass('public');
			$(this).children().removeClass('public');
		});
		
		// Images fade in and out
		$(".small_left_column_image").hover(
			function () { $(this).stop(true, true).animate({ opacity: 0.7 }, 500, function() {}); },
			function () { $(this).stop(true, true).animate({ opacity: 1 }, 500, function() {}); }
		);
		
		// Images fade in and out
		$(".small_middle_column_image").hover(
			function () { $(this).stop(true, true).animate({ opacity: 0.7 }, 500, function() {}); },
			function () { $(this).stop(true, true).animate({ opacity: 1 }, 500, function() {}); }
		);
		
		// Images fade in and out
		$(".small_right_column_image").hover(
			function () { $(this).stop(true, true).animate({ opacity: 0.7 }, 500, function() {}); },
			function () { $(this).stop(true, true).animate({ opacity: 1 }, 500, function() {}); }
		);
		
		// Column hovers
		$('.small_left_column_text').hover( function(){
			$(this).addClass('public');
			$(this).children().addClass('public');
			$(this).addClass('pointer');
		},
		function(){
			$(this).removeClass('public');
			$(this).children().removeClass('public');
		});	
		$('.small_middle_column_text').hover( function(){
			$(this).addClass('public');
			$(this).children().addClass('public');
			$(this).addClass('pointer');
		},
		function(){
			$(this).removeClass('public');
			$(this).children().removeClass('public');
		});
		$('.small_right_column_text').hover( function(){
			$(this).addClass('public');
			$(this).children().addClass('public');
			$(this).addClass('pointer');
		},
		function(){
			$(this).removeClass('public');
			$(this).children().removeClass('public');
		});
		
		$('.logos_simple img').hover(
			function () { $(this).stop(true, true).animate({ opacity: 0.5 }, 500, function() {}); },
			function () { $(this).stop(true, true).animate({ opacity: 1 }, 500, function() {}); }
		);
	
		$('.publication_image img').hover(
			function () { $(this).stop(true, true).animate({ opacity: 0.7 }, 500, function() {}); },
			function () { $(this).stop(true, true).animate({ opacity: 1 }, 500, function() {}); }
		);
	
		$("#logo").hover(
		function () { $(this).stop(true, true).animate({ opacity: 0.11 }, 1000, function() {}); },
		function () { $(this).stop(true, true).animate({ opacity: 1 }, 1000, function() {}); }
		);
	
	}
);
