Meteora.uses('Control.Popup');
Meteora.uses('Element.Event');
Meteora.uses('Control.Menu');

Meteora.onStart(
		function() {
		   new Menu(
			    'desple',
			    [
			     {
				'label': '<img src="img/dis01.png" id="dis01">',
				   'icon': 'dis01.png',
				   'items': [
					      {
						'label': 'Aguascalientes',
						   'href': 'estado_aguascalientes.html'
					     },
						 {
						'label': 'Baja California Norte',
						   'href': 'estado_bcn.html'
					     },
						 {
						'label': 'Chihuahua',
						   'href': 'estado_chihuahua.html'
					     },
					     {
						'label': 'Coahuila',
						   'href': 'estado_coahuila.html'
					     },
						    {
						'label': 'Estado de México',
						   'href': 'estado_mexico.html'
					     },
						  
						  {
						'label': 'Jalisco',
						   'href': 'estado_guada.html'
					     },
					   
					     {
						'label': 'Nuevo Leon',
						   'href': 'estado_nuevoleon.html'
					     },
						   {
						'label': 'Michoacán',
						   'href': 'estado_michoacan.html'
					     },
					     {
						'label': 'Queretaro',
						   'href': 'estado_queretaro.html'
					     },
					     {
						'label': 'Quintana Roo',
						   'href': 'estado_quintanaroo.html'
					     },
					     {
						'label': 'Sonora',
						   'href': 'estado_sonora.html'
					     },
					     {
						'label': 'Tabasco',
						   'href': 'estado_tabasco.html'
					     },
					     
					     ]
				   }
			     ],
			    {
			    iconDir: 'img/'
				  }
			    );

if(window.ie == true){
	if(window.ie7 != true){
		   var shim			= 'x.gif';
		   var img = $('dis01');
		   var src = img.src;
		img.style.width = img.width + "px";
		img.style.height = img.height + "px";
		img.style.filter = "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='" + src + "', sizingMethod='scale')";
		img.src = shim;
	}
}		
		
		   
		}
		);


