// JavaScript Document
$(document).ready(function() {
	$("#contentColumn").add_layer("url('../images/pageTopBgSection.jpg') top no-repeat");
	
	// Table
	$("table").css({ width: "98%", border: "1px solid #000", borderCollapse: "collapse" });
	
	// Links in table
	$("table a").css({ fontWeight: "bold", textDecoration: "underline" });
	
	// Odd/Even
	$("table tr table tr:odd td").css({ backgroundColor: "#ECECEC", verticalAlign: "top", padding: "10px", textAlign: "center" });
	$("table tr table tr:even td").css({ backgroundColor: "#FFFFFF", verticalAlign: "top", padding: "10px", textAlign: "center" });	
		
	// Header Row
	$("table tr th").css({ backgroundColor: "#000000", color: "#F4DA01", fontWeight: "bold", textAlign: "center", padding: "10px" });
	$("table tr th a").css({ color: "#F4DA01", fontWeight: "bold" });

	// First Column
	$("tr td:first-child").css({ paddingLeft: "15px", textAlign: "left", width: "200px" });

	// Green cells
	$(".green").css({ backgroundColor: "#339966", fontWeight: "bold", border: "1px solid #000", color: "#FFF" });


});