$(document).ready ( function () {
	/* JQ VIDEO OVERLAY */
	$(".video-overlay").hover (
		function () {
			var file ="/gfx/site/gui/play-icon-on.png";
			$(this).css ({"cursor" : "pointer"});
			obj = $(this).find("img");
			$(obj).attr("src",file);
		},
		function () {
			var file = "/gfx/site/gui/play-icon-off.png";
			$(this).css ({"cursor" : "pointer"});
			obj = $(this).find("img");
			$(obj).attr("src",file);
		}
	);
	$(".video-play").colorbox(COLORBOX_VIDEO_PLAYER);
});
