// jQuery Code

jQuery(document).ready(function($){

	if($('.our-team')) {
		$('a.our-team-popup').tooltip({
			effect: 'slide'
		}).dynamic( {
			bottom: {
				direction: 'down',
				bounce: true
			}
		});
	}
	
	if($('.our-services')) {
		$('a.our-services-popup').tooltip({
			effect: 'slide'
		}).dynamic( {
			bottom: {
				direction: 'down',
				bounce: true
			}
		});
		
		var api = $('a.our-services-popup').tooltip(9);
		$('.thickbox').click(function() {
			api.hide();
			});
	}
	
	$('#nav li').hover(
	  	function() {
	  		$(this).addClass('hover');
	  	}, 
	  	function() {
	  		$(this).removeClass('hover');
	  	}
	  );

});