$(document).ready(function() {

	/* activate sifr when changing tabs - START*/
	$('#tabcontainer').tabs({
	   show: function(event, ui) {
//			sIFR.replace(helvetica, {
//				selector: 'h1',
//				css: [
//					'.sIFR-root { color:#333333; letter-spacing:0; font-size:48px; font-weight:normal, line-height:1em}',
//					],
//				wmode: 'transparent'
//			});
	   }
	});
	/* activate sifr when chaning tabs - END*/
	
	/* embed videoplayer - START */
	var flashvars = {};
	var params = {
		allowscriptaccess: "always"
	};
	var attributes = {};

	swfobject.embedSWF("/Templates/Edet2010/Edet/EdetEnvironmentalCampaign2009/videoplayer.se.swf", "videoplayer", "963", "483", "9.0.0", "/Templates/Edet2010/Edet/EdetEnvironmentalCampaign2009/expressInstall.swf", flashvars, params, attributes);
	/* embed videoplayer - END */
	
	/* pause video when clicking links with class attribute "pausevideo" - START*/
	$('a.pausevideo').click(function() {
		getFlashMovie("videoplayer").pauseVideo();
	});
	/* pause video when clicking links with class attribute "pausevideo" - END*/
});

/* helper funciton for geting videoplayer instance */
function getFlashMovie(movieName) 
{
	var isIE = navigator.appName.indexOf("Microsoft") != -1;
	return (isIE) ? window[movieName] : document[movieName];
}