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="dis02">',
				   'icon': 'dis02.png',
				   'items': [
					      {
						'label': 'Aguascalientes',
						   'href': 'estado_aguascalientes.html'
					     },
						 {
						'label': 'Baja California Norte',
						   'href': 'estado_bcn.html'
					     },
					     {
						'label': 'Chiapas',
						   'href': 'estado_chiapas.html'
					     },
						 {
						'label': 'Chihuahua',
						   'href': 'estado_chihuahua.html'
					     },
					     {
						'label': 'Coahuila',
						   'href': 'estado_coahuila.html'
					     },
						  
						  {
						'label': 'Estado de Hidalgo',
						   'href': 'estado_hidalgo.html'
					     },
						 {
						'label': 'Estado de México',
						   'href': 'estado_mexico.html'
					     },						  
						  {
						'label': 'Jalisco',
						   'href': 'estado_guada.html'
					     },
						
					     {
						'label': 'Nayarit',
						   'href': 'estado_nayarit.html'
					     },
						 
					     {
						'label': 'Nuevo Leon',
						   'href': 'estado_nuevoleon.html'
					     },
						 {
						'label': 'Puebla',
						   'href': 'estado_puebla.html'
					     },
					     {
						'label': 'Queretaro',
						   'href': 'estado_queretaro.html'
					     },
					     {
						'label': 'Quintana Roo',
						   'href': 'estado_quintanaroo.html'
					     },
					      {
						'label': 'Sinaloa',
						   'href': 'estado_sinaloa.html'
					     },
					     {
						'label': 'Sonora',
						   'href': 'estado_sonora.html'
					     },
						  {
						'label': 'Veracruz',
						   'href': 'estado_veracruz.html'
					     },
					     {
						'label': 'Tabasco',
						   'href': 'estado_tabasco.html'
					     },
						 {
						'label': 'Zacatecas',
						   'href': 'estado_zacatecas.html'
					     },
					     ]
				   }
			     ],
			    {
			    iconDir: 'img/'
				  }
			    );
		   
if(window.ie == true){
	if(window.ie7 != true){
		   		   var shim			= 'x.gif';
		   var img = $('dis02');
		   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;
	}
}		

		}
		);


