$(document).ready(function() {
    	
       // pentru modal box poze
       $("a.fancybox").fancybox();
       
       // pentru acordeon
       $('#category-ul> div').hide();  
 	   $('#category-ul> span').click(function() {
    		$(this).next('div').slideToggle('slow')
   			 .siblings('div:visible').slideUp('slow');
  		});
  		
  		$('#category-ul> .selected').show();
  		
  		//contact - domeniu de activitate
  		$("#div-domeniu").hide();
  		$(".domeniu-activitate").change(function () {
          	var str = "";
          	
          	$("select option:selected").each(function () {
                str = $(this).text();
            });
              	
          	if(str == 'Alt domeniu')
          		$("#div-domeniu").show("slow");
          	else
          		$("#div-domeniu").hide();	

        })
});
