﻿function registerFlash(id, video){
    $("#" + id).click(function(evt){                 
        evt.stopPropagation();
        evt.preventDefault();
        $("#section_media_container").empty();
        $("#section_media_container").append("<object width='315' height='263'><param name='movie' value='flash/" + video + ".swf'></param><param name='allowFullScreen' value='true'></param><embed src='flash/" + video + ".swf' type='application/x-shockwave-flash' allowfullscreen='true' width='315' height='263'></embed></object>");
    });    
}

function loadFlash(id, video) {
	$('#' + id).empty();
	$('#' + id).append('<embed src="http://videos.steemer.com/flash//mediaplayer.swf" id="movie" enablejs="true" width="315" height="235" type="application/x-shockwave-flash" flashvars="width=315&height=235&file=http://videos.steemer.com/flash/' + video + '.flv&image=http://videos.steemer.com/flash/' + video + '.jpg"></embed>');
}

$(document).ready(function(){
    setTimeout("try{$('.video').eq(0).click();}catch(ex){}",1500);
});

