var icoFlashList = {
	'index': {
		'swf': '/static/swf/flashstop.swf',
		'width': 89,
		'height': 132
	},
	'news': { 
		'swf': '/static/swf/news.swf', 
		'width': 132,
		'height': 150
	},
	'catalog': {
		'swf': '/static/swf/falshstop.swf',
		'width': 89, 
		'height': 132
	},
	'contacts': {
		'swf': '/static/swf/kompas.swf',
		'width': 64,
		'height': 67
	},
	'mail': {
		'swf': '/static/swf/mail.swf',
		'width': 207, 
		'height':281
	}
};

if(window.jQuery && window.swfobject){
	
	$(function(){
		$('#swfIco').each(function(){
			if(icoFlashList[this.id]){
				params = icoFlashList[this.class];
				$(this).css('width',params.width+'px').css('height',params.height+'px');
				swfobject.embedSWF(params.swf, 'swfIco', params.width, params.height, "9.0.0", "/static/swf/expressInstall.swf");
			}	
		});
	});

	
/*
	window.flashHeight=function(h){
		if(!window.bgfObject){
			window.bgfObject = $('#bgfObject')[0];
		}

		$(mapObject).css('height',h+'px');
	}
*/
}

