$(document).ready(

	function () {

		var feedbackDiv = $("#feedback");

		var jPlay       = $("#jquery_jplayer");

		

		$(".testdrive").colorbox({innerWidth: 600, innerHeight: 446});

		$(".facility").colorbox({iframe:'True', innerWidth: 960, innerHeight: 450});
		$(".talent").colorbox({innerWidth: 900, innerHeight: 460});

		/*

		jPlay.jPlayer(

			{

				ready: function () {

					feedbackDiv.mouseover(

						function () {

							jPlay.setFile('../applause-3.mp3').play();

						}

					);

					

					feedbackDiv.mouseout(

						function () {

							jPlay.setFile('../applause-3.mp3').pause();

						}

					);

				}

			}

		);

		*/

	}

);