$().ready(function() {	
	//$('table tr:not([th]):odd').addClass('odd');	
	$('.delete').click(function() { 
            return confirm("Удалить?");
    }); 
	/*
	$(".basket").hide();
	$.get('/ajax/getcart.php', function(data) {				
		if(data.length > 0) {
			$(".basket").show().css('display:block !important;');
			
			$(".basket").html(data);
		}	
	});	
	*/
	$('#gosearch').click(function() { 
            var s = $('#ss').val();				
			if(s=='') {
				alert('Пустой поисковый запрос');
				return false;
			}
    }); 
});

