$(document).ready(function(){
	/* 
	$('.aTweet:odd').css('background-color','#aeaf9a');
	$('.aTweet:even').css('background-color','#d5d6bc');
	*/

	$('.aTweet:odd').css('background-color','#FFF');
	$('.aTweet:even').css('background-color','#EAEAEA');

	$('a.externalLink').click(function() {
		window.open(this.href);
		return false;
	});
	
	$('img.profilepic').error(function () {
		$(this).unbind('error').attr('src', 'images/default_profile_normal.png');
	});
	
	$('#bt_following_list').listnav({
		initLetter: 'A',
		cookieName: 'blitztweets-following',
		noMatchText: 'No matching entries.'
	}).css('display', 'inline');
	
	$('#allTweets').carousel({ 
		direction: "vertical",
		dispItems: 5, 
		
		pagination: true,
		paginationPosition: 'outside',
		animSpeed: 'slow',
		nextBtn: '<span><img src="/images/btn_next.png" style="position:relative; top:4px; left:2px;" /></span>',
		prevBtn: '<span><img src="/images/btn_previous.png" style="position:relative; top:4px; left:-2px;" /></span>'
	}).css('visibility', 'visible');
	
	$('#contactSubmitButton').click(function() {
		if ($('#contactName').val() != "" && $('#contactComment').val() != "") {
			$('#contactForm').submit();
		}
	});

});