// JavaScript Document

$(document).ready(function() {
	//=========top menu===============
	$('#top>li>ul').hide();
	$('#top>li').mouseover(function(){
	   //if ($(this).children("a").hasClass("selected") != true) {
		   $(this).children("ul").show();
		   $(this).children("a").addClass("over");
	   //}
    });
	$('#top>li').mouseout(function(){
       $('#top>li>ul').hide();
	   $(this).children("a").removeClass("over");
    });
	//=========top menu===============
	
	//=========top src value===============
	$('#news_email').click(function() {
  		if($("#news_email").attr("value")=="Adresa de email"){
			$("#news_email").attr("value", "");
		}
	});
	$('#cip').click(function() {
  		if($("#cip").attr("value")=="pretul in EURO"){
			$("#cip").attr("value", "");
		}
	});
	//=========top src value===============
	
	
	//=========cur table===============
	$('.tr').mouseover(function() {
  		$(this).addClass('mouse_over');
	});
	$('.tr').mouseout(function() {
  		$(this).removeClass('mouse_over');
	});
	//=========cur table===============
		
	
	$('#curs_an').change(function() {
		$("#curs_valutar").submit();
	});
	$('#curs_luna').change(function() {
		$("#curs_valutar").submit();
	});
	
	$('#tip').change(function() {
		var id = $("#tip").val();
		var lang_file = $("#lang_file").val();
		$.post('http://www.btleasing.md/selector.php?id='+id+'&lang_file='+lang_file, function(data) {
		  $('.result').html(data);
		});
	});
});



