// JavaScript Document
function showSWF() {
	$('div.swf').each(
		function(index) {
			var fmain = new SWFObject($(this).attr("title")+".swf", $(this).attr("id"), "320", "240", "10.0.45.2", "#000000");
			fmain.write($(this).attr("id"));
	});	
}
/*
function showYT() {
	$('div.youtube').each(
		function(index) {
		var flashvars = {};
		var params = {};
		params.allowScriptAccess = 'Always';
		params.allowFullScreen = 'True';
		params.movie = 'http://www.youtube.com/v/' + $(this).attr('title')
		var attributes = {};
		attributes.id = $(this).attr('title');
		swfobject.embedSWF('http://www.youtube.com/v/' + $(this).attr('title'), $(this).attr('id'), '300', '250', '8', false, flashvars, params, attributes);
	});
}
*/
