$(document).ready(function(){
	//read more stuff
	$('#homeReadMo').slideUp( );
	$('a.homeReadMo').click( function(){
		if( document.getElementById( 'homeReadMo' ).offsetHeight > 0 ) {
			$( this ).html( 'read more &raquo;' );
			$( '#homeReadMo' ).slideUp( 'fast' );
		}
		else{
			$(this).html('&laquo; read less');
			$( '#homeReadMo' ).slideDown( 'fast' );
		}
		return false;
	});
});
