var gbox = gbox || {};

function modifyHeight(h){
		$('#'+gbox.widgetID).attr('height', h);
		$('#swf-container').attr('height', h);
		$('#pa-widget-swf').attr('height', h);		
		//document.getElementById(gbox.widgetID).height = h;
		//document.getElementById('swf-container').height = h;
}

(function() {
	
	var myBox = gbox.widgetID = 'pa-widget';//+(new Date()).getTime();
	gbox.swf = document.location.protocol + '//' + document.location.hostname + '/' + 'static/swf/widget.swf';
	gbox.concursSwf = document.location.protocol + '//' + document.location.hostname + '/' + 'static/swf/concurs.swf';
	gbox.concursImg = document.location.protocol + '//' + document.location.hostname + '/' + 'static/concurs/';
	gbox.draw = function(container, sizes, flashVars) {
		var c = 'swf-container';
		var s = sizes || {w: 300, h: 250};
		var fv = flashVars || "{'round':true,'tc':true,'t':'g'}";
		var params = {
  			movie: this.swf,
			wmode: 'transparent',
			allowScriptAccess: 'always',
			quality: 'high'
		};	
		gbox.swfobject.embedSWF(this.swf+'?'+flashVars, c, s['w'], s['h'], '9.0.0', '','', params);
	}
	
})();
