function home_vimeo() {
    // If no video id, abandon ship!
    if($('div.video a', '#feature').text().length <= 0) {
        return false;
    }
    
    // Hide image and grab Vimeo clip id
    $('div.static', '#feature').hide();
    var id = $('div.video a', '#feature').text().replace('http://vimeo.com/','').replace('http://www.vimeo.com/','');
    
    // Embed code plus id
    var html = '<object width="380" height="300"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id='+ id +'&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=0&amp;show_portrait=0&amp;color=ff001a&amp;fullscreen=1" /><embed src="http://vimeo.com/moogaloop.swf?clip_id='+ id +'&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=0&amp;show_portrait=0&amp;color=ff001a&amp;fullscreen=1" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="380" height="300"></embed></object>';
    
    // Insert markup
    $('#feature').html(html);
}

function home_ready() {
    // Move links in some blocks
    if ($('#edit-vote').length) {
        $('ul.links', '#col-polls').clone().insertAfter('#col-polls #edit-vote').end().remove();
    }
    
    // Equalize Columns
    $('div.column', '#columns').equalHeights();
    
    // Add class to links
    $('div.links ul', '#col-last').addClass('links links-vertical');
    
    // Embed Vimeo (if present)
    home_vimeo();
}

$(function() {
    if(!$('body.msie6').length) {
        home_ready();
    }
});

