$(document).ready( function() {
	
	$('.clearSearchForm').click( function(e) {
//		e.preventDefault();
		var form = $(e.target).parents('form.searchForm');
		
		if (form.length) {
			form[0].reset();
			form.find(':input').not(':button, :submit, :reset, :hidden')
			 .val('')
			 .removeAttr('checked')
			 .removeAttr('selected');
			
			/*
			$('option:selected').each(function(){
				$(this).removeAttr('selected');
			});
			 
			$('li.selected').each(function(){
				$(this).removeClass('selected');
			});
			$('.selectReplacement').each(function(){
				$(this).children(':first').addClass('selected');
			});
			
			$('.replaced').each(function(){
				$(this).val('wybierz');
			});
			*/
			
			$('.hjsel_container').find('li').css('display','list-item');
		}
	});
}); 
