var protobrand = {
    
    swf_file               :    'Main.swf',
    swf_div                :    'mainContainer',
    swf_div_width          :    '100%',
    swf_div_height         :    '100%',
    swf_redirect_ver       :    '10.0.0',
    swf_install            :    '',
    
	flashvars              :     {},
	params                 :     {},
	attributes             :     {},
		
    embed: function($where){
        if($where)
            this.swf_file = $where;
            
        $('#wrap').remove();
        $('body').prepend('<div id="mainContainer"></div>');
        swfobject.embedSWF( this.swf_file, 
                            this.swf_div, 
                            this.swf_div_width,
                            this.swf_div_height,
                            this.swf_redirect_ver,
                            this.swf_install,
                            this.flashvars,
                            this.params,
                            this.attributes
                        );
    }
}
