/*$Id: minishop.js 4356 2011-03-27 10:24:29Z denis $*/
function nc_minishop_response (response) {
	$('#nc_minishop_cart').html(response.cart);
  for ( i = 0; i < response.hash.length; i++ ) {
    $('#nc_mscont_'+response.hash[i]).html(response.incart);
  }
  //notify
  if ( response.notify.type == 1 ) alert( response.notify.text );
  if ( response.notify.type == 2 ) $("body").prepend( response.notify.text );
	
}


function nc_minishop_send_form (ident, url) {
	var params = {}; 
	$('#'+ident).find(".nc_msvalues").each(function(index){
		var elem = $(this);
		var aname = elem.attr("name");var avalue = elem.val();
		params[aname] = avalue;
		});
    
  $.post( url,params,function(response){nc_minishop_response(response)},'json');
}
