$.noConflict();
	jQuery(document).ready(function($) {
	
	// Image 
   	$(".tile").hover(
		function () {
			$(this).children(".tileImage").stop(true, true).animate({ opacity: 0.25 }, 200, function() {}); 
			$(this).children(".tileText").addClass('active');
			$(this).addClass('pointer');
		},
		function () {
			$(this).children(".tileImage").stop(true, true).animate({ opacity: 1 }, 600, function() {});
			$(this).children(".tileText").removeClass('active');
			$(this).removeClass('pointer');
		}
	);
  
  	$(".tileEnd").hover(
		function () {
			$(this).children(".tileImage").stop(true, true).animate({ opacity: 0.25 }, 200, function() {}); 
			$(this).children(".tileText").addClass('active');
			$(this).addClass('pointer');
		},
		function () {
			$(this).children(".tileImage").stop(true, true).animate({ opacity: 1 }, 600, function() {});
			$(this).children(".tileText").removeClass('active');
			$(this).removeClass('pointer');
		}
	);
	
	$("#news img").hover(
		function () {
			$(this).stop(true, true).animate({ opacity: 0.45 }, 200, function() {}); 
			$(this).addClass('pointer');
		},
		function () {
			$(this).stop(true, true).animate({ opacity: 1 }, 600, function() {});
			$(this).removeClass('pointer');
		}
	);
	
	// Logo
	$("#name img").hover(
		function () {
			$(this).stop(true, true).animate({ opacity: 0.2 }, 200, function() {}); 
		},
		function () {
			$(this).stop(true, true).animate({ opacity: 1 }, 600, function() {});
		}
	);
	
});
