$(document).ready(
	function()
	{
		$("a[href*=.flv]").flowplayer("flowplayer.swf");
		$.preload(
			[
			 	'andrew',
			 	'brittany',
			 	'dan',
			 	'lee',
			 	'nicole'
		 	],
			{
		    	base: '_files/cast-',
		    	ext: '.jpg'
			}
			);
		$("map#cast-map area").hover(
			function ()
			{
				var name = "#" + this.id.replace("-map", "");
				$(name).fadeIn(100);
			},
			function()
			{
				var name = "#" + this.id.replace("-map", "");
				$(name).fadeOut(100);
			}
			);
		$("img.bio-photo").preload(
			{
				find: '.jpg',
				replace: '-hover.jpg'
			}
			);
		$("img.bio-photo").hover(
			function ()
			{
				this.src = this.src.replace('.jpg', '-hover.jpg');
			},
			function ()
			{
				this.src = this.src.replace('-hover.jpg', '.jpg');
			}
			);
	}
);