$(function() {
	
    // Colorize flickr link.
    $('ul.navigation a.flickr').html("<span class='blue'>Flick</span><span>r</span>").attr('rel', 'external');

    // Rel="external" links go out
    $('a[rel*="external"]').click(function() {
        window.open($(this).attr('href'));
        return false;
    })
})

/*
 * Changes "Form" with class "Remote" to send remote post.
 */
$(function() {
    $('form.remote')//.each(function(index) {
        
        //$(this).append($('<input type="hidden" name="format" value="js" />'));

    //})
    .live('submit',function() {

        var form = $(this);
        // Send ajax :P
        $.post(form.attr('action') + '?format=javascript', form.serialize(), null, 'script');

        return false;
    })

})