// ALL DOCUMENT READY FUNCTIONS

$(document).ready(function(){

	/**** SHADOWS ****/
 
	$(".shadow").buildShadows();

	$(".shadowNoTop").buildShadowsAlt();

	$(".shadowTextBox").buildShadowsTextBox();

	$(".clickClear").bind("click",clearTextBox);

	$(".clickClear").bind("focus",clearTextBox);

	$(".newsletterForm").validate();

	/**** MOUSE OVER ****/

	/*preLoadImages('/content/images/yellow_star_over.jpg','/content/images/yellow_star_non_over.jpg');

	$(".dbDisplay").hover(function(){

			$(this).addClass("dbDisplayOver");

			$(this).find(".starBright").attr("src","/content/images/yellow_star_over.jpg");

			$(this).find(".star").attr("src","/content/images/yellow_star_non_over.jpg");

		},

		function(){

			$(this).removeClass("dbDisplayOver");

			$(this).find(".starBright").attr("src","/content/images/yellow_star.jpg");

			$(this).find(".star").attr("src","/content/images/yellow_star_non.jpg");

			}

		);*/

	/**** PACKAGES ****/

	$(".extraImage").bind("click",showExtraImage);

});
