var path;
$(function() {

/* PNG Fix */
	$(document).pngFix({blankgif:'/i/blank.gif'});
/* //PNG Fix */

	$('.delete_link').click(function(){
		$('#count'+$(this).attr('id')).val('-1');
		$('#basket_form').submit();
		return false;
	});
	
	$(".item_photo_prev").click(function(){
		path = $(this).attr('href');
//		alert($(this).children().attr('src'));
		$('#image_big img').animate({opacity: 0},1000,function(){
			$(this).attr("src", path).bind('load',function(){
				$(this).animate({opacity: 1},1000);
			});
		});
		return false;
	});
	
	$("#subm").click(function(){
		$("#search_form").submit();
	});

	$('.pic1').cycle({timeout: 4000}).show();
	$('.pic3').cycle({timeout: 6000}).show();

	$(".qst").accordion({autoheight: false, header: 'a.rubric', active: $(".active").parent().prev()});

//	$('.qst a.rubric').click(function() {
//		$(this).next().slideToggle('slow');
//		return false;
//	}).next().hide();

});
