$(document).ready(function(){
	
	$('.fullText').hide();
	
	
	$('.moreBtn a').click(function(){
		
				
		var full = $(this).parent('div').parent('li').find('.fullText');
		
		full.slideDown('slow');
			$(this).hide();
		
		
		$(this).blur();
		return (false);
		
	});
	
	$('.lessBtn a').click(function(){
		
				
		var full = $(this).parent().parent().parent().find('.fullText');
		var more_btn = $(this).parent().parent().parent().find('.moreBtn a');
		
		full.slideUp('slow', function() {
			more_btn.show();
		});
				
		
		$(this).blur();
		return (false);
		
	});
	
	
	/*
	
	// CUstom FONt
	Cufon.replace("#bottom h2",  {fontFamily: 'ITZ Eras'});
	*/
});

function showMoreBtn()
{
	$('.moreBtn a').show();	
}

