﻿function cancelEnter(event) { 
    if (window.event) {
        if (event.keyCode == 13) { 
            return false;
        }
    } else if (event.which == 13) {
        return false;
    }
}; 

$(function() {
    $(".searchInput").focus(function() {
        var text = $(this).val();
        if (text == "cauta produse..." || text == "search products...") $(this).val("");
    }); 

    $('.search_product').click(function() {
        var text = $(".searchInput").val();
        if (text == "" || text == "cauta produse..." || text == "search products...") return false;
        else window.location = "Cautare.aspx?name=" + text;
    });
    $('.searchInput').bind('keyup', function(e) {
        if (e.keyCode == 13) {
            var text = $(".searchInput").val();
            if (text == "" || text == "cauta produse..." || text == "search products...") return false;
            else {
                window.location = "Cautare.aspx?name=" + text; 
            } 
        }
    });
    $('.searchInput').bind('keypress', function(e) {
        if (e.keyCode == 13) { 
            return false;
        }
    });

    $(function() {
        $("#sigla_normal").hover(
      function() {
          $(this).stop().animate({ "opacity": 0 });
      },
      function() {
          $(this).stop().animate({ "opacity": 1 });
      }
	);
    })
    
});
