// JavaScript Document

$(document).ready(function() {
	//=========top menu===============
	$('.ul>li>ul').hide();
	$('.ul>li').mouseover(function(){
	   if ($(this).children("a").hasClass("selected") != true) {
		   $(this).children("ul").show();
		   $(this).children("a").addClass("over");
	   }
    });
	$('.ul>li').mouseout(function(){
       $('.ul>li>ul').hide();
	   $(this).children("a").removeClass("over");
    });
	//=========top menu===============
	
	//=========top src value===============
	$('#jdsearchbox').click(function() {
  		if($("#jdsearchbox").attr("value")=="Cautare"){
			$("#jdsearchbox").attr("value", "");
		}
	});
	//=========top src value===============
	
	//=========credite table===============
	$('.tr').mouseover(function() {
  		$(this).addClass('mouse_over');
	});
	$('.tr').mouseout(function() {
  		$(this).removeClass('mouse_over');
	});
	//=========credite table===============
		
});
