function getVideo(id,player,width,height,muted,autoplay ) {
	// PUT CODE CUSTOM FOR YOUR SITE IN HERE.  
	// MOST COMMON METHOD IS TO REWRITE THE VIDEO DIV WITH YOUR PLAYER
	var domain = 'http://www.sheknows.com/';
	try {
		if (document.location.hostname) {
			domain = 'http://' + document.location.hostname + '/';
		}
	}
	catch(e) {}
	
	if (player.substr(0,2) != 'sk') {
		player = undefined
	}
	
	if (typeof autoplay === 'undefined') { autoplay = true; }
	
	var so = new SWFObject("http://cdn.springboard.gorillanation.com/storage/xplayer/yo033.swf", "mplayer", width || "420", height || "335", "8");
	so.addParam("swliveconnect", "true");
	so.addParam("allowfullscreen", "true");
	so.addVariable("pid", player || "sk005");
	so.addVariable("siteId", "58");
	so.addVariable("videoId", id);
	so.addVariable("autostart", autoplay);
	so.addVariable("file", domain + "videos/" + id + ".rss");
	so.addVariable("pageUrl", document.location);

	if (muted == true) {
		so.addVariable('volume','0');
	}
	so.write("flashcontent_skplayer");
}
var content_width = 420;
var content_height = 335;
