$(document).ready( function() {
/*
// customised tooltip
	$('#links a').mousemove( function(e) {
		
		// show the tooltip box
		$('.toolTip').show();
		
		// the attribute of the <a> tag link
		var title = $(this).attr('eyTitle');
		
		// insert the attribute
		$('.toolTip').text(title);
		$('.toolTip').css('top', e.clientY-20).css('left', 20+e.clientX);		
	
	}).mouseout( function() {
		
		// hide the tooltip box once mouse has been taken off
		$('.toolTip').hide();
		
	});
*/

	// once the title has been clicked
	$('#contactBtn').click( function() {
		
		$('#contact').css('color','#c00');
		$('#contact').parent().css('backgroundColor','#f9f9f9').css('borderRadius','6px').css('borderWidth','1px').css('borderStyle','dotted').css('borderColor','#aaa');
		
	});
	
	// the h2 tag triggers the content to slide up and down
	$('.our-mission .title h2').click( function() {
		
		// make this trigger to open the box
		$(this).parent().next().slideToggle();

	});
	
	// the h2 tag triggers the content to slide up and down
	$('.enfusion-equation .title h2').click( function() {
		
		// make this trigger to open the box
		$(this).parent().next().slideToggle();

	});
	
	// the h2 tag triggers the content to slide up and down
	$('.our-method .title h2').click( function() {
		
		// make this trigger to open the box
		$(this).parent().next().slideToggle();

	});
	
	// the h2 tag triggers the content to slide up and down
	$('.enfused-mind .title h2').click( function() {
		
		// make this trigger to open the box
		$(this).parent().next().slideToggle();

	});
	
	// the h2 tag triggers the content to slide up and down
	$('.story-so-far .title h2').click( function() {
		
		// make this trigger to open the box
		$(this).parent().next().slideToggle();

	});
	
});
