// JavaScript Document

$.fx.speeds._default = 500;

//JQuery Cycle Call
$(document).ready(function(){
	$("#big_banner").cycle({
		fx: "fade",
		speed: 2000,
		timeout: 10000
	});
	
	$("#small_banner").cycle({
		fx: "none",
		speed: 10000,
		timeout: 15000
	});
});

new TWTR.Widget({
 version: 2,
 type: 'profile',
 rpp: 10,
 interval: 6000,
 width: 208,
 height: 220,
 theme: {
	   shell: {
		 background: '#CCCCCC',
		 color: '#FFFFFF'
	   },
	   tweets: {
		 background: '#FFFFFF',
		 color: '#333333',
		 links: '#325eb8'
	   }
 },
 features: {
	   scrollbar: false,
	   loop: true,
	   live: true,
	   hashtags: true,
	   timestamp: true,
	   avatars: false,
	   behavior: 'default'
 }
}).render().setUser('gfmnews').start();5

