$(document).ready(function(){
	var randomImage = ['header1'];
	$("#nav").not(".subPage").css({ background: "url(images/" + randomImage[Math.floor(Math.random()*randomImage.length)] + ".jpg) no-repeat center right"});
	$("#navLinks li").css("background-color", "#a3b2c7");
	$("#navLinks li").hover(
		function() {
			$(this).stop().animate({ backgroundColor: "#b1c3dd" }, 750);
		},function() {
			$(this).stop().animate({ backgroundColor: "#a3b2c7" }, 500);
	});	 
	$(".ministry:even").css("background-color", "#e9eef4");
	$("table.resourceLibrary").find("tr:odd").css("background-color", "#e9eef4").hover(
		function() {
			$(this).stop().animate({ backgroundColor: "#f6f9ff" }, 250);
		},function() {
			$(this).stop().animate({ backgroundColor: "#e9eef4" }, 350);
	});
	$("table.resourceLibrary").find("tr:even").not(":first-child").hover(
		function() {
			$(this).stop().animate({ backgroundColor: "#f6f9ff" }, 250);
		},function() {
			$(this).stop().animate({ backgroundColor: "#ffffff" }, 350);
   });
	
	$("table.musicLibrary").find("tr:odd").css("background-color", "#e9eef4").hover(
		function() {
			$(this).stop().animate({ backgroundColor: "#f6f9ff" }, 250);
		},function() {
			$(this).stop().animate({ backgroundColor: "#e9eef4" }, 350);
	});
	$("table.musicLibrary").find("tr:even").not(":first-child").hover(
		function() {
			$(this).stop().animate({ backgroundColor: "#f6f9ff" }, 250);
		},function() {
			$(this).stop().animate({ backgroundColor: "#ffffff" }, 350);
   });
	
	/*$(".resourceLibrary td:last-child, .resourceLibrary th:last").css("text-align", "center");*/
	$("form.jqtransform").jqTransform();
	/*$(".title").click(function () {
		  $(".audioPlayer", this.parentNode).slideToggle("fast");
	});*/
});
