$(document).ready(function () {
	
	// Read more links
	
	$('div.read_more').hide();
	
	$('a.read_more').click(function () {
//		$(this).hide();
		if ( $('div.read_more').is(':visible') ) {
			$(this).html('Read More ...');
			$('div.read_more').fadeOut(800);
		}
		else {
			$(this).html('Hide ...');
			$('div.read_more').fadeIn(800);
		}
		return false;
	});
	
});





