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