$('#readyTest').corner();
    
    $(function(){
		/*$('div.affected2').wrap('<div class="outer1"></div>');
		/*$('div.affected2').corner("round 8px").parent().css('padding', '2px').corner("round 10px cc:#ddd");*/
		
	$("#menuh a").corner("top 10px cc:#000");

    });
	
	$(function () {
	/* containers should be full-height to allow bottom calculation */
	$('html, body').flex('height', 1);
	/* flex all position properties of the test div */
	$('#dropdownpanel').flex('left', 1).flex('right', 1);
	/* flexify! */
	$(document).flexify();
});

function createplayer(theFile, go) {
	var s = new SWFObject("mediaplayer.swf","playerID","360","20","7");
	s.addParam("allowfullscreen","true");
	s.addParam("wmode", "transparent");
	s.addVariable("file",theFile);
	s.addVariable("width","360");
	s.addVariable("height","20");
	s.addVariable("displayheight","0");
	s.addVariable("overstretch","fit");
	s.addVariable("enablejs","true");
	s.addVariable("javascriptid","thePlayerId"); 
	if (go) { s.addVariable("autostart","true"); }
	s.write("placeholder");

}