// JavaScript Document

var j$ = jQuery;

	j$(document).ready(init);
//	j$(window).load(loaded);

var windowWidth = 400;
var windowHeight = 400;

function init()
{

	//ASSIGN VALUES TO GLOBALS
	windowWidth = j$(window).width();
	windowHeight = j$(window).height();
////////////////////////////////////////////////////////////////////////////

////////////////////////////////////////////////////////////////////////////
	//TABLE RESET
	j$('table').attr({'cellspacing':0, 'width':'100%'});
	j$('td').attr({'valign':'top'});
////////////////////////////////////////////////////////////////////////////
	//CALENDAR STYLING
	j$('#leftCol #sidebarWidgets #calendar_wrap table tbody td:even').css({'background':'#EEE'})
////////////////////////////////////////////////////////////////////////////
	//NAV Button Styling
	j$('div.navigation a[rel$="prev"]').css({'float':'left'});
	j$('div.navigation a[rel$="next"]').css({'float':'right'});

}


