$(document).ready(function () {
    $(".details").click(function () {
        var idname = $(this).attr("id");
        $('#text_' + idname).toggle(500);
        $('#' + idname).text($('#' + idname).text() === 'Read more >>' ? 'Read less >>' : 'Read more >>');
        return false;
    });
	$(".location").click(function () {
        var idname = $(this).attr("id");
        $('#text_' + idname).toggle(500);
        $('#' + idname).text($('#' + idname).text() === 'Show' ? 'Hide' : 'Show');
        return false;
    });
});
