
window.addEvent('domready' , function () 
{
    if($('tweets'))
    {
       getTwitters('tweets',
	{
	  id: 'IkonComm_AU',
	  count: 1,
	  enableLinks: true,
	  ignoreReplies: true,
	  clearContents: true,
	  newwindow:true,
	  template: '<div style="">%text% <a href="http://twitter.com/%user_screen_name%/statuses/%id%/">%time%</a></div>'
	});

        $('tweets').addEvent('click',function()
        {
            window.location = "http://www.twitter.com/IkonComm_AU"
        })
    }
    else{return}
	
});
