$(document).ready(function() {
	$('.logos .logo').hover(
		function() {
			$(this).find('img').fadeIn(0);
		},
		function() {
			$(this).find('img').fadeOut(0);
		}
	);
	
	$('.homeProductdesign').hover(
		function() {
			$('.logos').find('.homeProductdesign').parent().addClass('noBg');
			$('.logos').find('.homeProductdesign').find('img').fadeIn(0);
			$('#index').find('.homeProductdesign').addClass('white');
			$('#nav').find('.homeProductdesign').addClass('white');
		},
		function() {
			$('.logos').find('.homeProductdesign').parent().removeClass('noBg');
			$('.logos').find('.homeProductdesign').find('img').fadeOut(0);
			$('#index').find('.homeProductdesign').removeClass('white');
			$('#nav').find('.homeProductdesign').removeClass('white');
		}
	);
	
	$('.homeMotion').hover(
		function() {
			$('.logos').find('.homeMotion').parent().addClass('noBg');
			$('.logos').find('.homeMotion').find('img').fadeIn(0);
			$('#index').find('.homeMotion').addClass('white');
			$('#nav').find('.homeMotion').addClass('white');
		},
		function() {
			$('.logos').find('.homeMotion').parent().removeClass('noBg');
			$('.logos').find('.homeMotion').find('img').fadeOut(0);
			$('#index').find('.homeMotion').removeClass('white');
			$('#nav').find('.homeMotion').removeClass('white');
		}
	);
	
	$('.homePrint').hover(
		function() {
			$('.logos').find('.homePrint').parent().addClass('noBg');
			$('.logos').find('.homePrint').find('img').fadeIn(0);
			$('#index').find('.homePrint').addClass('white');
			$('#nav').find('.homePrint').addClass('white');
		},
		function() {
			$('.logos').find('.homePrint').parent().removeClass('noBg');
			$('.logos').find('.homePrint').find('img').fadeOut(0);
			$('#index').find('.homePrint').removeClass('white');
			$('#nav').find('.homePrint').removeClass('white');
		}
	);
	
	$('.homeWeb').hover(
		function() {
			$('.logos').find('.homeWeb').parent().addClass('noBg');
			$('.logos').find('.homeWeb').find('img').fadeIn(0);
			$('#index').find('.homeWeb').addClass('white');
			$('#nav').find('.homeWeb').addClass('white');
		},
		function() {
			$('.logos').find('.homeWeb').parent().removeClass('noBg');
			$('.logos').find('.homeWeb').find('img').fadeOut(0);
			$('#index').find('.homeWeb').removeClass('white');
			$('#nav').find('.homeWeb').removeClass('white');
		}
	);
	
	$('.homeAll').hover(
		function () {
			$('.homeWeb, .homeMotion, .homePrint, .homeProductdesign').trigger('mouseover');
		},
		function () {
			$('.homeWeb, .homeMotion, .homePrint, .homeProductdesign').trigger('mouseout');
		}
	);
});

