$(document).ready(function() {
  $('.menu-dropdownli').hover(function() {
	  
    $('ul:first', this).fadeIn("slow");
  },
  function() {
	$('.menu-drop', this).fadeOut("fast");
	
  });
  $('.menu-dropdownli li').hover(function() {
    $('.menu-drop', this).each(function() {
      $(this).css('top', $(this).parent().position().top - 1);
      $(this).css('left', $(this).parent().position().left + $(this).parent().width());
      $(this).fadeIn("slow");
    });
  },
  function() {
    $('ul:first', this).hide();
  });

  
  $("#back").click(function () {
  	window.back();
  });
  
  $(".input-button-search").click(function () {
		window.location.href = "index.php?location=product_list_search&data="+$(".input-text-search").val();
  });
  
  $(".input-button-qsearch-name").click(function () {
  	window.location.href = "admin.php?location=product_view&search=topName&value="+$("#input-text-qsearch-name").val();
  });
  
  $(".input-button-qsearch-code").click(function () {
  	window.location.href = "admin.php?location=product_view&search=topCode&value="+$("#input-text-qsearch-code").val();
  });
  
});
