$(document).ready(function(){

       $('.Sort ul li').hover(
            function() {
                $(this).find('.slideDown').stop(true, true);
    			$(this).find('.slideDown').fadeIn(300);  },
            function() {
                $(this).find('.slideDown').fadeOut(300);     }
        );
        $('.slideDown').fadeOut(0);

        $('.categories').click (function(){
        
        var e = $(this).find('span');

		var el = e.data('tug');

		$(this).parent().find('.options').slideToggle('fast');

		$(this).toggleClass('showCat');

	});

});

//Clear and fill input fields

