$(function() {
	
	//header plate rotation
    $('#product_rotation').cycle({timeout:4000,speed:500});
	
	//twitter rotation, relative time and linkify
    $('#twits').cycle({timeout:6000,speed:500,pause:1});
	$("#twits .tweet_text").each(function() {
		$tweet = $(this).html().linkify();
		$(this).html($tweet);
	});
	$("#twits .tweet_time").each(function() {
		$time = relative_time($(this).html());
		$(this).html($time);
	});
				
});

