function initMenu() {
	
  $('.secondMenu ul').hide();
   $('.secondMenu.expanded ul').show();
  

  
  if ($('#rightContent .secondMenu ul li.activeLink').length > 0){
  	$('#rightContent .secondMenu ul li.activeLink').parent().show().prev().addClass("minus");
  }else{
  	$('#rightContent .secondMenu ul li').parent().show().prev().addClass("minus");
  }
  
  $('#rightContent .secondMenu li span').click(
    function() {
      var checkElement = $(this).next();
      if((checkElement.is('ul')) && (checkElement.is(':visible'))) {
        return false;
        }
      if((checkElement.is('ul')) && (!checkElement.is(':visible'))) {
        $('#rightContent .secondMenu ul:visible').slideUp('normal').prev().removeClass("minus");
        checkElement.slideDown('normal').prev().addClass('minus');
        return false;
        }
      }
    );
  }
$(document).ready(function() {
	initMenu();
	var galleryCurentPos = 1;
	
	$("#toolBar li:last").insertAfter("#foo");
	
	$('#mainContent .emailAddress').replaceWith('<a href="mailto:argentinadr@yahoo.com">argentinadr@yahoo.com</a>');
	
	$('#linkcuplurinoi').html('<a href="http://www.cuplurinoi.ro">www.cuplurinoi.ro</a>');
	

	
//	$('.fotoGalleryBig li:nth-child('+galleryCurentPos+')').hide();
	$('.fotoGalleryBig li').hide().css({position: "absolute"});
	$('.fotoGalleryBig li:nth-child('+galleryCurentPos+')').show();
	
	$('.fotoGallerySmall img').mouseover(function(){
		$('.fotoGallerySmall img').not($(this)).stop().fadeTo(0, 0.5);
    }).mouseout(function(){
		$('.fotoGallerySmall img').stop().fadeTo(0, 1);
    });
	
	$('.fotoGallerySmall img').click(function(){
//		alert("galleryCurentPos = " + galleryCurentPos + "--------  $('.fotoGallerySmall li').index(this) = " + $('.fotoGallerySmall li').index(this));
		$(".fotoGalery").removeClass('currentGalery');
		$(this).parent().parent().addClass('currentGalery');
		
		if ((galleryCurentPos-1) == $('.currentGalery .fotoGallerySmall img').index(this)){

		}else{
			$('.currentGalery .fotoGalleryBig li').fadeOut('slow');
			galleryCurentPos = ($('.currentGalery .fotoGallerySmall img').index(this)) + 1;
			$('.currentGalery .fotoGalleryBig li:nth-child('+galleryCurentPos+')').fadeIn('slow');
		}

//		alert("galleryCurentPos = " + galleryCurentPos + "--------  $('.fotoGallerySmall li').index(this) = " + $('.fotoGallerySmall li').index(this));
	})

	if($.browser.msie){
		$("#mainContent hr").replaceWith('<div style="text-align:left; width: 580px; height: 30px; background: url(images/content_bk.gif) no-repeat top left;"></div>');
	}

});










