﻿$(document).ready(function(){$('a.continue-read').click(function()
{get_joke_id=$(this).attr('id');res=get_joke_id.split('-');joke_id=res[2];$.getJSON('/piada/json/get/'+joke_id+'/',function(data){$('div#joke-'+data.id+' div.text').slideUp('slow',function()
{$('div#joke-'+data.id+' div.text').empty();$('div#joke-'+data.id+' div.text').prepend(data.joke);$('div#joke-'+data.id+' div.text').slideDown();$('div#joke-'+data.id+' a.continue-read').slideUp('slow',function(){$(this).remove();});});return false;});return false;});$('#send a').toggle(function()
{$('#send').toggleClass('open');$('#send form').slideDown('slow');return false;},function()
{$('#send form').slideUp('slow',function(){$('#send').toggleClass('open');});return false;});});
