jQuery(document).ready(function() {
		$('.lightbox').lightBox();
		$('.noticia_desarrollo').hide();
		$('.desp_noticia').click(function(){
// 			$('.noticia_desarrollo').hide();
			$(this).parent().parent().children('.noticia_desarrollo').toggle();
			$(this).parent().parent().children('.intro').toggle();
			return false;
		});

		$('.boletines_desarrollo').hide();
		$('.desp_boletines').click(function(){
			$(this).parent().parent().children('.boletines_desarrollo').toggle();
			return false;
		});
		
		$('.fixture_desarrollo').hide();
		$('.desp_fixture').click(function(){
			$(this).parent().parent().children('.fixture_desarrollo').toggle();
			return false;
		});

if (jQuery.browser.msie) {
  var __version__ = parseInt(jQuery.browser.version);
  if (__version__ > 6){
    $('#botonera').addClass('menu2');
  }
}
else{
  $('#botonera').addClass('menu2');
}



});

