function loadSWF(requestedID){
		var flashvars = {};
				//flashvars.show_label_at_first="false";
		//flashvars.show_logos="false";
		if(requestedID){
			flashvars.requestedID = requestedID;
			flashvars.playOn = 1; //if user views a specific video, at the end of that video (1) play on or (0) stop
			
		}
		flashvars.page = 1;
		var params = {}
		params.menu = "false";
		params.wmode = "transparent";
		params.scale = "noscale";
		var attributes = {};
		swfobject.embedSWF("http://www.matmi.com/site_swfs/gamesreel.swf","flashContent","900", "320","9.0.0","inc/expressInstall.swf",flashvars,params,attributes);	
	}	
	
	loadSWF();
	
	function expanding(id,currentAmount,numReps){
 
			currentAmount=parseInt(currentAmount)+50;
			
			document.getElementById("more_"+id).style.height = currentAmount+"px"; 
 
			if(numReps)numReps++;
			
			else numReps=0;
			
			if(numReps<5)
				setTimeout("expanding("+id+",'"+currentAmount+"','"+numReps+"')",0.1);
 
	}
	
	function collapsing(id,currentAmount){
	
		currentAmount=parseInt(currentAmount)-50;
		document.getElementById("more_"+id).style.height = currentAmount+"px";
		if(document.getElementById("more_"+id).style.height != "90px")
			setTimeout("collapsing("+id+",'"+currentAmount+"')",0.1);
			
	
	}
	
	function startexp(id){
		if(document.getElementById("more_"+id).style.height == "" || document.getElementById("more_"+id).style.height == "90px" || document.getElementById("more_"+id).offsetHeight == "100"){
			expanding(id,90,0);
		}else collapsing(id,340);
	
	}
	
