﻿function GetTweeterFeed(url, elId)
{
    if($("#" + elId).length > 0){
		$("#" + elId).before("<img src=\"/img/indicator.gif\" id=\"tweetloading\" style=\"display: block; margin: 10px auto\" />");
        $(window).load(function(){
            $.getScript("http://twitter.com/javascripts/blogger.js");
            $.getScript(unescape(url));
			$("#tweetloading").hide();
        });
    }
}

function showIFrameContent(el){
    
    $(el.parentNode.parentNode).find("div.download-iframeholder iframe").animate({opacity:1, height:700});
    
    return false;
}
