// JavaScript Document
/* functions for menus */

var newWin;
function largeImg(source)	{
	var s;
	s = "largeimg.htm?src="+escape(source);

	newWin = window.open(s,"newWin","resizable=yes,menubar=no,titlebar=yes,dependent=yes,width=100,height=100,alwaysRaised=yes");
	newWin.focus();
//	setTimeout('newWin.focus();',250);
	return false;
}


// check for movie player
// note: don't use document.ready - swfobject does not work if you wait till dom ready, do right away
if ($('#movie')) {
	var flashvars = { videos: "/assets/media/videos.xml" };
	var params = { allowfullscreen: "true", allowscriptaccess: "always" };
	var attributes = {};
	swfobject.embedSWF("/assets/flash/Titanium-480.swf", "movie", "490", "560", "9.0.0","/assets/flash/expressInstall.swf", flashvars, params, attributes);
}
if ($('#movie2')) {
	var flashvars = { videos: "/assets/media/videos2.xml" };
	var params = { allowfullscreen: "true", allowscriptaccess: "always" };
	var attributes = {};
	swfobject.embedSWF("/assets/flash/Titanium-640.swf", "movie2", "650", "516", "9.0.0","/assets/flash/expressInstall.swf", flashvars, params, attributes);
}


$(document).ready(function() {
    if ($("#video-block-opener a").length) {
	  $("#video-block-opener a").overlay({
		mask: {
			color: '#000',
			loadSpeed: 200,
			opacity: 0.7
		},
		closeOnClick: true
	  });
	}
	
    if ($("#video-block-opener2 a").length) {
	  $("#video-block-opener2 a").overlay({
		mask: {
			color: '#000',
			loadSpeed: 200,
			opacity: 0.7
		},
		closeOnClick: true
	  });
	}
	
});


