// JavaScript Document

jQuery(document).ready(function(){
		jQuery(".fon-menu ul li:last").addClass("li-last");
	});

jQuery(document).ready(function(){
		jQuery(".fon-menu ul li a.a").mouseover(function() {
			jQuery(this).parent().find(".submenu").show();
			jQuery(this).parent().parent().find(".submenu:visible").hover(
				function () {
					jQuery(this).prev().addClass("hover");
				}, 
				function () {
					jQuery(this).hide();
					jQuery(this).prev().removeClass("hover");
				}
			);
			jQuery(this).parent().hover(
				function () {
					//...
				}, 
				function () {
					jQuery(this).find(".submenu:visible").hide();
				}
			);
		});
	});
	
function chooseGood(rid) {
	$('.a-goods').removeClass('current-good');
	$('#link_'+rid).addClass('current-good');
	$('#good-foto').empty().load('_a_load.php?photo='+rid, function() {
		$('.pp_pic_holder').add('.pp_overlay').add('.ppt').remove();
		//$("a[rel^='prettyPhoto']").prettyPhoto({theme: 'facebook'});
	});
	$('#good-container').html('<div class="scroll-pane02 content02" id="good-info"></div>');
	$('#good-info').load('_a_load.php?info='+rid, function() {
		$('.scroll-pane02').jScrollPane({
			showArrows:false, 
			scrollbarWidth:13, 
			scrollbarMargin:0, 
			dragMinHeight:10
		});
	});
	return false;
}
