﻿//
//This file is part of Genwi JS Lib.
//All Rights Reserved.
//

$().ready(function() {
$.getJSON("http://twitter.com/statuses/user_timeline/genwi.json?callback=?", 

function(data) { 
		$("#lasttweet").html(data[0].text);
		$("#tweettime").html(data[0].created_at).attr("href", "http://twitter.com/genwi/status/" + data[0].id);
	});
});

$().ready(function() {
	$("#s1").cycle({
		fx: "fade",
		speed: "fast",
		timeout: 12000
	});
});		
