/*
	Theme Name: Silverfish Media
	Theme URI: http://www.silverfish.tv
	Description: Theme for silverfish.tv
	Version: 2.0
	Author: Monovisual
	Author URI: http://www.monovisual.com/
*/

/* ==================================================================== */
/* = Quotes                                                           = */
/* ==================================================================== */

var currentquote;
var maxquotes = 100;

if ( readCookie('quote') == null ) createCookie('quote','0',0);

function get_quote ()
{	
	currentquote = parseInt(readCookie('quote'));
	( currentquote < maxquotes ) ? currentquote = parseInt(readCookie('quote'))+1 : currentquote = 1;
	createCookie('quote',currentquote,0);
	
	( $('#quotes p').size() > 0 ) ? $('#quotes').animate({opacity:0}, 'slow', function(){ $(this).find('p').remove(); query_quote(); }) : $('#quotes').animate({opacity:0}, 0, function(){ query_quote(); });
}

function query_quote ()
{
	$.post('/ajax/quotes.php',
		{ quote : currentquote },
		function(data){
			$('#quotes').append(data).animate({opacity:1}, 'slow');
			maxquotes = $('#quotes p').find('a').attr('rel');
		}
	);
}
