$('#categories .has_subcategories').hover(function(){
    var pos = $(this).position();
    $(this).children(':first-child').addClass('link_hover');
    $(this).children(':last-child').css({left:pos.left, top:pos.top + 30}).show();
	$('#searchcat').hide();
	$('#selectPrductSort').hide();
}, function(){
    $(this).children(':first-child').removeClass('link_hover');
    $(this).children(':last-child').hide();
	$('#searchcat').show();
	$('#selectPrductSort').show();
});
