﻿/// Basic UI script for all browsers
//
//  #slideshow selector will be overriden for IE6 and7
//
/// --------------------------------
$(document).ready(function() {
    $('#slideshow').cycle({
		fx: 'fade',
		speed: 1000,
		timeout: 5000
	});
    $('#newsitems').cycle({
		fx: 'scrollUp',
		speed: 1000,
		timeout: 10000
	});
	var firstlinktext = $('#topnav ul a').first().html();
	$('#topnav ul a').first().html('<img src="/images/home.png" alt="' + firstlinktext + '"/>');
	$('input[title!=""]').hint();



	$(".tweet").tweet({
	    join_text: "auto",
	    username: "ellisaccounting",
	    count: 1,
	    loading_text: "<img src='/images/ajax-loader.gif' alt='loading tweets...' />"
	});


});



