// JavaScript Document

 $(document).ready(function(){
 });



function getMovie(movieName) {
	/*if (navigator.appName.indexOf("Microsoft") != -1) {
		return window[movieName]
	} else {
	    return document[movieName]
	}*/
	return document.getElementById(movieName);
}

function flashPutHref(href) { location.href = href; }

function embedMovie(fileName){
	// SWFObject embed
	var flashvars = {
		paramXMLPath: "param.xml",
		initialURL: escape(document.location),
		useExternalInterface: "true",
		file: fileName,
		controlbar: "over",
		autostart: "true",
		skin: "stylish_slim.swf"
	};
	var params = { 
		base: ".",
		bgcolor: "#121212",
		allowfullscreen: "true",
		movie: "player.swf",
		allowscriptaccess: "always"
	};                
	var attributes = {
		id: "movie"
	};
	swfobject.embedSWF("player.swf", "movie", "320", "240", "9.0.0", false, flashvars, params, attributes);
}

embedMovie("movies/CollarCity320x240.flv");

