// JavaScript Document

$(document).ready(function() {
	//=========top menu===============
	$('.ul>li').mouseover(function(){
		$(this).children("ul").show();
		$(this).children("a").addClass("over");
    });
	$('.ul>li').mouseout(function(){
       $('.ul>li>ul').hide();
	   $(this).children("a").removeClass("over");
    });
	//=========top menu===============
	
	$('.tab_1').click(function(){
		 $('#meniu_index').find('.selected').removeClass("selected");
		 $(this).addClass("selected");
		 
		 $('.src_form').hide();
		 $('.oferte').hide();
		 $('.int_text').hide();
	     $('.imobile').show();
		 
		 return false;
    });
	$('.tab_2').click(function(){
		 $('#meniu_index').find('.selected').removeClass("selected");
		 $(this).addClass("selected");
		 
		 $('.src_form').hide();
		 $('.oferte').hide();
		 $('.int_text').hide();
	     $('.mobile').show();
		 
		 return false;
    });
	$('.tab_3').click(function(){
		 $('#meniu_index').find('.selected').removeClass("selected");
		 $(this).addClass("selected");
		 
		 $('.src_form').hide();
		 $('.oferte').hide();
		 $('.int_text').hide();
	     $('.medicale').show();
		 
		 return false;
    });
	$('.tab_4').click(function(){
		 $('#meniu_index').find('.selected').removeClass("selected");
		 $(this).addClass("selected");
		 
		 $('.src_form').hide();
		 $('.int_text').hide();
		 $('.medicale').hide();
	     $('.oferte').show();
		 
		 return false;
    });
	
	
	
	$('.title>a').click(function(){
		 $('.box_index').find('.selected').removeClass("selected");
		 $(this).addClass("selected");
		 
		 $('.sub_menu').hide();
	      $(this).parent().find('ul').show();
		 
		 return false;
    });
	
		
});
