jQuery(document).ready(function($){    
    // ajax load the tags into content area
    $('#tagcloud a').live("click", function(e){
        URL = $(this).attr("href");
        URL = URL + " #inside";
        $('#inside').load(URL);
        // removes the 'more' link as we're loading all posts
        $('#next-prev').remove();
        
        // prevents default url behaviour (stops page loading)
        e.preventDefault();
    });
});
