$(function() {
	$('.dropdown-large').find('blockquote').hide();
	$('.dropdown-large').children('li:first').find('blockquote').show();
	
	// NAV HOVER / SELECTED COLOUR
	$('.navigation li').hover(function(){
		$(this).find('ul').show();
	}, function(){
		$(this).find('a').css('color', '#fff');
		$(this).find('ul').hide();
	});
	$('.dropdown-large li').hover(function(){
		$('.dropdown-large').find('blockquote').hide();
		$(this).find('blockquote').show();	
	});
	
	// LISTING HOVER
	$('#listing #center-content > li').hover(function(){
		$(this).css('background', '#fafbfc');
	}, function() {
		$(this).css('background', '#fff');
	});
	
	// PEOPLE LISTING HOVER
	$('#people-landing #landing-sections li').hover(function(){
		$(this).find('img').stop().animate({
			'top' : '-15px',
			'opacity' : '0'
		}, 250);
	}, function(){
		$(this).find('img').stop().animate({
			'top' : '0',
			'opacity' : '1'
		}, 300);
	});
	
	// SERVICES LANDING - REMOVE MARGIN
	$("#services-landing #landing-sections li").filter(function(index) { return index % 3 == 2; }).css('margin', '0');
	
	// PEOPLE LANDING - REMOVE MARGIN
	$('#people-landing #landing-sections li').filter(function(index) { return index % 6 == 4; }).css('margin', '0 0 33px');
	
	// LISTING BACK TO TOP
	$('a.back-to-top').live('click', function(){
		$('body, html').animate({
			scrollTop : '0'
		}, 1500)
	});
	
});
