$(document).ready(function(){
 
    // Search
    
    $("#fire").click(function () {
      $("#search").slideToggle("fast");
	  // hide the previous div (#translate-show) in case it's actioned
	  $("#translate-show").css({'display' : 'none'});
	  // current event
	  $(".busqueda").css({'color' : '#03C', 'font-weight' : 'bold'});
	  $(".traduccion").css({'font-weight' : 'normal'});
	});

    // Translate

    $("#translate").click(function () {
      $("#translate-show").slideToggle("fast");
	  // hide the previous div (#search) in case it's actioned
	  $("#search").css({'display' : 'none'});
	  // current event
	  $(".traduccion").css({'color' : '#03C', 'font-weight' : 'bold'});
	  $(".busqueda").css({'font-weight' : 'normal'});
	});
	

    // navbar clients

    $(".clients a").hover(function(){
            $(this).animate({
                    paddingLeft: "7px"
            }, 100);
    }, function(){
            $(this).animate({
                    paddingLeft: "0px"
            }, 100);
    });
    
 });
