/* 
	Site: Trafigura Graduates
	Date: October 2009 
	Description: Homepage javascript
	Version: 1.0 
	Author: Pete Luffman
	Author URI: http://www.merchantmarketinggroup.com 
*/ 


$(function(){ 
	// Hide paragraphs and create 'More' link

	var $paras = $('#content p:not(:first) + p');
	
	$paras.addClass('hide');
	$('#content p:last').after('<p><a href="#" id="toggle">More</a></p>');
	
	$('#toggle').click(function () { 
    	$paras.toggleClass('hide');
    	$(this).toggleClass('less');
    	
    	if($paras.hasClass('hide')){
    		$(this).text('More');
    	} else {
    		$(this).text('Less');
    	}
 	
    	return false;
    });
});