//DOM ready
$(document).ready(function(){
	//Correct placement margin on article
	$(".article:odd").addClass("last");
	
	//Random statement at top
	setRandomStatementPicture();
	
	//remove inline span style in Blanketter
	$("#leftnav ul li span").attr("style", "");
	
	//Set graphical icon on liks with href attr
	$("#content a[href != '']").addClass("bullit");
});

function setRandomStatementPicture(){
	var MAX_STATEMENTS = 3;
	var MIN_STATEMENTS = 1;
	var DIR_STATEMENTS = '/files/tod/system/images/statements/';
	var EXT_STATEMENTS = '.gif';
	var theStatement = DIR_STATEMENTS + (Math.round((MAX_STATEMENTS-MIN_STATEMENTS) * Math.random() + MIN_STATEMENTS))+EXT_STATEMENTS;
	$("#statement").attr("src", theStatement);
}











