/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

$(document).ready(function() {
   $('#showOptionFilter').click(function(){
       $('#hideOptionFilter').fadeIn(700);
        $('#optionFilter').slideDown(1000);
        $(this).hide();
   });
   $('#hideOptionFilter').click(function(){
       
       $('#optionFilter').slideUp(1000);
       $(this).hide();
       $('#showOptionFilter').fadeIn(700);
   }); 
});

