var backgrounds={files:["ds.jpg","cmd.jpg","wiibutton.jpg","xbox.jpg","xbox2.jpg","fireflower.jpg","macbook.jpg","iphone.jpg","imacback.jpg","imacfront.jpg"],random:function(){var a=Math.floor(Math.random()*this.files.length);return this.files[a]}};$(document).ready(function(){$("#name > h1").click(function(){$("#hover > div:not(#contact)").fadeOut();$("#contact").fadeIn();return false});$("#name > h2 > a").click(function(){var a=$(this).attr("id").replace("link_","");$("#hover > div:not(#"+a+")").fadeOut();$("#"+a).fadeIn();return false});$('<img src="img/bg/'+backgrounds.random()+'" alt="Background" />').load(function(){$(this).appendTo("#background");do_resize()});$(window).resize(function(){do_resize()});$.ajax({url:"http://twitter.com/statuses/user_timeline/jalada.json?callback=?",dataType:"jsonp",success:function(d){var a=[];var e=0,c=0;while(e<d.length&&c<5){if(!d[e].in_reply_to_status_id){var f=d[e].user.screen_name;var b=d[e].text.replace(/((https?|s?ftp|ssh)\:\/\/[^"\s\<\>]*[^.,;'">\:\s\<\>\)\]\!])/g,function(g){return'<a href="'+g+'">'+g+"</a>"}).replace(/\B@([_a-z0-9]+)/ig,function(g){return g.charAt(0)+'<a href="http://twitter.com/'+g.substring(1)+'">'+g.substring(1)+"</a>"});a.push('<tr class="twitter-update"><td class="twitter-date">'+format_date(d[e].created_at)+'</td><td class="twitter-arrows">&raquo;</td><td class="twitter-status">'+b+"</td></tr>");c++}e++}$("#twitter-loading").remove();$("#twitter_update_list").html(a.join(""))}})});function do_resize(){var e=$("#background img");var g=e.width();var i=e.height();var d=g/i;var c=i/g;$("#background").hide();var f=$(window).width();var h=$(window).height();$("#background").show();$("#background").css({width:f+"px",height:h+"px"});if(f/h>=d){e.css({width:f+"px",height:Math.ceil(c*f)+"px",left:"0px",top:Math.abs((c*f)-h)/-2+"px"})}else{e.css({width:Math.ceil(d*h)+"px",height:h+"px",top:"0px",left:Math.abs((d*h)-f)/-2+"px"})}}function format_date(b){var a=b.split(" ");return a[2]+" "+a[1]+" "+a[5]};